import React from 'react'; import { ITableItem, ITableProps } from './Table.types'; /** * Table display sets of data. */ declare function Table({ className, testingID, id, cols, items, footer, ...props }: ITableProps): React.JSX.Element; export default Table;