import { FC } from 'react'; export declare type TTableData = { content: string[][]; withHeadings: boolean; }; export declare const Table: FC;