import type { NamedExoticComponent } from 'react'; import { Group } from './components'; export interface FormLayoutProps { /** The content to display inside the layout. */ children?: any; } export declare const FormLayout: NamedExoticComponent & { Group: typeof Group; };