import { BufferSource } from './types'; /** Download a file */ export declare function downloadFile(content: BufferSource | Blob | string, filename: string, type: string | undefined, utf8Bom?: boolean): void;