import { ReactNode } from 'react'; /** * FormSection * Classification: custom * * Groups related form fields under a titled, described section with consistent * spacing - the building block for composite forms (Settings, create flows). */ export interface FormSectionProps { title: string; description?: string; children: ReactNode; /** Renders a divider above the section. */ divider?: boolean; } export declare function FormSection({ title, description, children, divider }: FormSectionProps): import("react").JSX.Element;