export interface IColumnMapperMeta { key: string; accessor?: string; value?: string; } export interface ITableCell { value: string; key: string; } export type ITableRow = { rows: ITableCell[]; }; export interface ITableColumn { key: string, label: string, } export interface ITable { columns: ITableColumn[], data: ITableRow[], }