/// import type { ImportGlobFunction } from 'vite'; export type Importer = { webpackContext: false | webpack.Context; } | { importGlob: false | ReturnType; } | { import: false | ((s: string) => Promise); } | { imports: false | Record Promise>; }; type BootstrapArgs = Importer & { defaultRender: () => any; }; export declare const bootstrap: (args: BootstrapArgs) => Promise; export {}; //# sourceMappingURL=bootstrap.d.ts.map