export interface FieldsetProps { children: React.ReactNode; header?: React.ReactNode; hasTooltip?: boolean; isInvalid?: boolean; className?: string; } /** * Styled fieldset component to wrap/bundle related fields together. * * @todo See how/if we can merge this with the Fieldset component from the Utrecht * component library. There are substantial styling differences though. */ declare const Fieldset: React.FC>; export default Fieldset;