import { Entry } from './entry.js'; export declare const enum Bundler { ESBuild = "esbuild", WebPack = "webpack" } export declare const Bundlers: Bundler[]; export declare type Bundle = (entry: Entry, output: string) => Promise; export declare function use_bundle(bundler?: Bundler): Promise;