import { ReactNode } from 'react'; /** * FormPageLayout * Classification: custom (template) * * Centered single-column form page with a header and a sticky footer action * bar (submit / cancel). */ export interface FormPageLayoutProps { title: string; description?: string; children: ReactNode; /** Footer actions (submit / cancel). */ actions?: ReactNode; maxWidth?: number; } export declare function FormPageLayout({ title, description, children, actions, maxWidth, }: FormPageLayoutProps): import("react").JSX.Element;