import { PageProps } from '../../page-container'; import { ProPageHeaderProps } from '../../page-header'; import { ProTableProps } from '../../table'; export declare type ListPageProps = PageProps<{ header: ProPageHeaderProps; content: ProTableProps; }>; export declare const ListPage: (props: ListPageProps) => JSX.Element; export default ListPage;