import React from 'react'; interface IProps { style?: React.CSSProperties; children: React.ReactNode; pageKey: string; } declare function _Page(props: IProps): JSX.Element; export declare const Page: React.MemoExoticComponent; export {};