import { FieldsetProps } from './types/Fieldset.props.ts'; import { NamedExoticComponent, RefAttributes } from 'react'; /** * A thin wrapper around the native `
` element. * * Fieldsets group related form controls and are required for accessible * labeling of radio groups, checkbox groups, and any other set of controls * that share a single question or purpose. Pair it with `Legend` to provide * the group label. * * @example * ```tsx *
* Choose a plan * * * * *
* ``` */ declare const Fieldset: NamedExoticComponent & RefAttributes>; export default Fieldset;