import type { RowData } from './index'; export type ExportFormat = `csv` | `json` | `md` | `tex`; export declare const EXPORT_MIME_TYPES: Record; export type TableMatrix = { headers: string[]; rows: string[][]; numeric: boolean[]; }; export declare const table_to_delimited: ({ headers, rows }: TableMatrix, delimiter: `,` | `\t`) => string; export declare const table_to_json: (rows: RowData[], columns: { label: string; key: string; }[]) => string; export declare function table_to_markdown({ headers, rows, numeric }: TableMatrix): string; export declare function table_to_latex({ headers, rows, numeric }: TableMatrix): string;