import { FC } from 'react'; export interface TableProps { tableData: Array>; description: string; } declare const Table: FC; export default Table;