import * as React from 'react'; import { TableProps } from './Table.types.part'; export { TableMode, TableCellEvent, TableSortEvent, TableRowEvent, TableBodyRenderEvent, TableCardRendererEvent, TableProps, } from './Table.types.part'; export interface TableType extends React.SFC> { (props: TableProps & { children?: React.ReactNode; }, context?: any): JSX.Element; } /** * The table component shows a set of data in a tabular view. The data must be an array of JS objects, * where the shape of the objects has no constraints other than it must be same for each element of the * array. */ export declare const Table: TableType;