interface CacheOption { cachePath?: string; filename?: string; mode?: 'dev' | 'prod' | any; } interface BundlerOption { input: string; output?: string; mode?: 'dev' | 'prod' | any; cacheOption?: CacheOption | boolean; } interface BundlerOutput { code: string; cacheFile: string; outputFile: string; } declare function bundler(options: BundlerOption): Promise; export { bundler }; //# sourceMappingURL=bundler.d.ts.map