/** * Trigger a browser download of exported content. Kept isolated so the rest of * the export module stays DOM-free and unit-testable. No dependencies. */ export declare function downloadBlob(content: string | Uint8Array, fileName: string, mimeType: string): void;