type MimeType = "text/plain" | "text/html" | "text/css" | "text/javascript" | "text/csv" | "application/json" | "application/xml" | "application/pdf" | "application/zip" | "application/octet-stream" | "image/png" | "image/jpeg" | "image/gif" | "image/svg+xml" | "audio/mpeg" | "audio/wav" | "video/mp4" | "video/webm" | (string & {}); type DownloadableContent = [string, MimeType] | [Blob, MimeType] | [ArrayBuffer, MimeType] | [Uint8Array, MimeType] | [Int8Array, MimeType] | [Uint16Array, MimeType] | [Int16Array, MimeType] | [Uint32Array, MimeType] | [Int32Array, MimeType] | [Float32Array, MimeType] | [Float64Array, MimeType] | [DataView, MimeType] | Blob | File; export declare const downloadContent: (content: DownloadableContent, filename: string) => void; export {}; //# sourceMappingURL=downloadContent.d.ts.map