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