/// export interface TableCell { id?: string; value: any; isNumeric: boolean; } export interface TableProps { header: TableCell[]; body?: TableCell[][]; sortable?: boolean; orderBy?: string; order?: 'asc' | 'desc'; rowCount?: number; className?: string; zebraStripes?: boolean; } export declare const Table: (props: TableProps) => JSX.Element;