///
import { RecursivePartial } from '../typings';
import { IPage } from '../components/core/blocks/basic/Page';
export declare type PageProps = RecursivePartial & RecursivePartial & {
children?: JSX.Element | JSX.Element[] | string;
};
export declare function Page(props: PageProps): JSX.Element;