export interface BundleSdkOptions { projectRoot?: string | undefined; configPath?: string | undefined; sdkPath?: string | undefined; hosts?: string[] | undefined; defer?: string[] | undefined; quiet?: boolean | undefined; verbose?: boolean | undefined; } export interface BundleSdkResult { bundlePath: string; plugins: string[]; addons: string[]; entryPaths: { worker: string; }; manifestPath: string; } export declare function bundleSdk(options?: BundleSdkOptions): Promise; //# sourceMappingURL=index.d.ts.map