import type { FieldsetHTMLAttributes } from 'react'; export type FieldsetProps = FieldsetHTMLAttributes & { legend?: string; required?: boolean; disabled?: boolean; readOnly?: boolean; }; declare const Fieldset: import("react").ForwardRefExoticComponent & { legend?: string; required?: boolean; disabled?: boolean; readOnly?: boolean; } & import("react").RefAttributes>; export default Fieldset;