import { TableData } from './resultsExporter'; export declare type SortParam = { field: keyof TableData; order: 'asc' | 'desc'; }; export declare type TableOptions = { precision?: number; sortBy?: SortParam | SortParam[]; }; export declare function generateTable(results: readonly TableData[], options?: TableOptions): string;