interface DownloadCSVOptions {
    headers: string[];
    contents: (string | number)[][];
    filename?: string;
    separator?: string;
    bom?: boolean;
}
declare function downloadCSV({ headers, contents, filename, separator, bom }: DownloadCSVOptions): void;

export { type DownloadCSVOptions, downloadCSV };
