import * as React from 'react'; import { TableProps, DataType } from './Table.type'; export declare const name = "Table"; declare function Table(props: TableProps): React.ReactElement; declare namespace Table { var displayName: string; var propTypes: { data: import("prop-types").Requireable; columns: import("prop-types").Requireable; children: import("prop-types").Requireable; }; } export default Table;