import { FC, ReactNode } from 'react'; export declare const Page: FC<{ title: string; subtitle?: string; children: ReactNode; noscroll?: ReactNode; hidden?: boolean; corner?: { icon: string; prefix?: string; label: string; click: () => void; }; }>;