import type { FC, HTMLAttributes } from 'react';
export interface TableProps extends HTMLAttributes<HTMLTableElement> {
}
declare const Table: FC<TableProps>;
export default Table;
