declare module '*?raw'; declare module '*.cjs'; declare module '@pmmmwh/react-refresh-webpack-plugin'; declare module 'package.json'; declare module 'app:info' { export const projectName: string; export const version: string; } declare let __webpack_public_path__: string; declare module 'webpack-bundle-analyzer' { import type { BundleAnalyzerPlugin } from './bundle-analyzer.d.ts'; export class BundleAnalyzerPlugin implements WebpackPluginInstance { opts: BundleAnalyzerPlugin.Options; compiler?: Compiler; server: null | Server; constructor(options?: BundleAnalyzerPlugin.Options); apply(compiler: Compiler): void; /** @async */ startAnalyzerServer: (stats: WebpackStats) => Promise; /** @async */ generateJSONReport: (stats: WebpackStats) => Promise; generateStatsFile: (stats: WebpackStats) => Promise; /** @async */ generateStaticReport: (stats: WebpackStats) => Promise; getBundleDirFromCompiler: () => null | string; } } declare module 'sass';