import { FC, PropsWithChildren } from 'react'; export interface FieldsetProps { /** * The main legend for the fieldset. * Rendered as the native `` element at the top. */ legend?: string; /** * Optional secondary text displayed below the legend. * Typically used for helper or descriptive context. */ sublegend?: string; /** * Visual appearance of the fieldset container. */ appearance?: 'transparent' | 'outlined'; /** * Custom CSS class applied to the fieldset element. * Useful for styling overrides or scoped themes. */ className?: string; } /** The Fieldset component groups related form elements together with an optional legend and sublegend, enhancing visual clarity and accessibility */ export declare const Fieldset: FC>;