import { WorkBook, WritingOptions } from 'xlsx'; import { IExcel, getCellStyleType } from '../type'; declare function download(args: IExcel & { getCellStyle?: getCellStyleType; write: (data: WorkBook, opts: WritingOptions) => any; }): Blob | void; export default download;