import { FieldsetHTMLAttributes } from 'react'; export interface FieldsetProps extends FieldsetHTMLAttributes { /** Legend for the Fieldset */ feLegend: string; } /** * The `` component is used to group several controls as well as labels () within a web form. * It extends the interface of native html `` element. * * See [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset) for further information about the element and related attributes. */ declare const Fieldset: import("react").ForwardRefExoticComponent>; export default Fieldset;