/// interface WebpackContext { (path: string): { default?: string } | string; keys(): string[]; } interface ImportMeta { webpackContext( directory: string, options: { recursive?: boolean; regExp?: RegExp; }, ): WebpackContext; } declare module "*.md" { const content: string; export default content; }