/// import { EditableComponentProps } from './EditableComponent'; export declare type EditablePageProps = { children?: React.ReactNode; config: { componentMappings: { [key: string]: React.ComponentType; }; }; content?: any; isEditor?: boolean; renderArea?: (props: T) => React.ReactElement; renderComponent?: (props: T) => React.ReactElement; templateAnnotations?: Record; }; export declare const EditablePage: ({ children, config: { componentMappings }, content: originalContent, isEditor, renderArea, renderComponent, templateAnnotations }: EditablePageProps) => JSX.Element;