interface ResourceFolder { from: string; to: string; } interface Config { buildDir: string; bundler: string; mode: string; noclear: boolean; sourceDir: string; resources: ResourceFolder[]; devServer: { port: number; host: string; open: boolean; stats: string; noInfo: boolean; contentBase: string; }; lwcCompilerOutput: { development?: { compat?: boolean; env?: { NODE_ENV: string; }; format?: string; }; production?: { compat?: boolean; env?: { NODE_ENV: string; }; format?: string; }; }; lwcCompilerStylesheetConfig: any; lwcExperimentalDynamicComponent: any; } export declare const defaultLwcConfig: Config; export declare const lwcConfig: Config; export {};