/** * Build utilities for MSW integration */ /** * Initialize MSW service worker in public directory */ export declare function initializeMSWServiceWorker(publicDir?: string, filename?: string): Promise; /** * Check if MSW service worker is properly installed */ export declare function checkMSWServiceWorker(publicDir?: string, filename?: string): boolean; /** * Get MSW build configuration for different environments */ export declare function getMSWBuildConfig(environment: 'development' | 'testing' | 'production' | 'storybook'): { enabled: boolean; verbose: boolean; mode: "production" | "development" | "testing" | "storybook"; publicDir: string; serviceWorkerFilename: string; autoGenerateServiceWorker: boolean; }; //# sourceMappingURL=build-utils.d.ts.map