import { type BootOptions, WebContainer } from '@webcontainer/api'; /** * A simple composable for convenience to boot a web container and return the promise along with the status. * @param options */ export declare const useSandboxBoot: (options?: BootOptions) => { boot: Promise; isBooting: import("vue").Ref; };