import type { ListTable, PivotTable, PivotChart } from '@visactor/vtable'; import type { CellInfo } from '../excel'; export type ExportVTableToCsvOptions = { formatExportOutput?: (cellInfo: CellInfo) => string | undefined; escape?: boolean; exportAllData?: boolean; downloadFile?: boolean; fileName?: string; }; export declare function exportVTableToCsv(tableInstance: ListTable | PivotTable | PivotChart, option?: ExportVTableToCsvOptions): string;