/**
 * A function to start a download for a file.
 *
 * @param content The content of the file to download.
 * @param fileName The name of the file to download.
 * @param opt_fileType The type of the file to download.
 */
export declare const download: (content: string, fileName: string, opt_fileType: string | undefined) => void;
