import { ModelProps } from '../types/AEMModel'; import { ComponentMapping } from '../core/ComponentMapping'; export type PageProps = { isInEditor: boolean; componentMapping: typeof ComponentMapping; className?: string; } & ModelProps; export declare const Page: ({ className, ...props }: PageProps) => JSX.Element;