import { PureComponent } from 'react'; declare type TableProps = { columns: any[]; tableData: any[]; [propName: string]: any; }; declare type PaginationProps = { current: number; total: number; pageSize: number; }; declare type PageProps = { pagination: PaginationProps; [propName: string]: any; }; declare class StandardTable extends PureComponent<{ tableProps: TableProps; paginationProps: PageProps; }> { render(): JSX.Element; } export default StandardTable;