import { FC } from 'react'; import { CellProps } from 'react-table'; declare type TableCellsType = { [key in string]: FC>; }; export declare const TableCells: TableCellsType; export {};