//#region src/index.d.ts interface Framework { serve: (options?: any) => Promise; build: (options?: any) => Promise; prepare: (options?: any) => Promise; } declare function bootstrap(framework?: Framework): Promise; //#endregion export { bootstrap as default };