import { type DataTestId, type MaskingProps, type StylingProps, type WithChildren, type AriaDisabledProps } from '@dynatrace/strato-components/core'; /** * @public */ export interface FieldSetProps extends WithChildren, StylingProps, DataTestId, MaskingProps, AriaDisabledProps { /** * Whether the fieldset and all its fields are disabled or not. * @defaultValue false */ disabled?: boolean; /** The name associated with the group in a form. */ name?: string; } /** * @public */ export interface FieldSetLegendProps extends WithChildren, StylingProps, DataTestId { } /** * Use `FieldSet` to semantically group related form fields. * @public */ export declare const FieldSet: ((props: FieldSetProps & import("react").RefAttributes) => React.ReactElement | null) & { Legend: (props: FieldSetLegendProps & import("react").RefAttributes) => React.ReactElement | null; };