import React, { ChangeEvent, ReactElement } from 'react'; import { TableProps } from 'react-table'; import { PageHeaderProps } from '@monorail/visualComponents/pageHeader/PageHeader'; declare type Props = Partial> & { actions?: PageHeaderProps['actions']; title?: PageHeaderProps['title']; isLoading?: boolean; pageSize?: number; searchProps?: { onChange: (value: string, event?: ChangeEvent) => void; value?: string; }; }; export declare const TablePage: (props: Props) => React.ReactElement, string | ((props: any) => React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)>; export {};