import { IPagingTableProps } from './PagingTableProps'; /** * Table component with pagination, filtering, footer, child rows and grouping. * Derived from https://github.com/react-tools/react-table. */ declare const PagingTable: { ({ data, columns, ...rest }: IPagingTableProps): JSX.Element; defaultProps: { defaultPageSize: number; filterable: boolean; loading: boolean; manual: boolean; resizable: boolean; showPagination: boolean; sortable: boolean; }; }; export { PagingTable };