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