import { IPage } from './types'; import type { JSX } from 'react'; export interface IPageProps { pageModel: IPage; currentPageIndex: number; } export declare function Page(props: IPageProps): JSX.Element;