/** * Primary UI component for Form Sections */ import React from 'react'; export interface FormSectionProps { children: React.ReactNode; title: string; description?: React.ReactNode; direction?: 'vertical' | 'horizontal'; fullWidth?: boolean; } export declare const FormSection: React.FC;