/// <reference types="react" />
import './table.scss';
import { TableProps } from '../ITable';
declare function Table<T>(props: TableProps<T>): JSX.Element;
declare namespace Table {
    var Body: typeof import("../Body/Body").default;
    var Head: typeof import("../Head/Head").default;
}
export default Table;
