/** * Lazy-loaded file-saver module * This module provides dynamic imports for file-saver to reduce initial bundle size */ /** * Get the saveAs function from file-saver * @returns Promise that resolves to the saveAs function */ export declare const getSaveAs: () => Promise; /** * Placeholder for the saveAs function that will be dynamically imported * This allows TypeScript to recognize the function signature */ export declare const saveAs: (blob: Blob, filename: string) => Promise;