import { PureComponent } from 'react'; import { IProps } from '../../libs/interfaces'; interface ITableProps extends IProps { row: Function; data?: any[]; head?: Function; } interface ITableDefProps { data: any[]; } declare class Table extends PureComponent { static defaultProps: ITableDefProps; render(): JSX.Element; } export { Table, ITableProps };