importReact, { RefAttributes } from'react';
import { TableProps } from'./Table.types';
/**
* Tables are components used to display large amounts of data
*/declareconstTable: React.ForwardRefExoticComponent<RefAttributes<HTMLTableElement> & TableProps>;
exportdefaultTable;