export interface RootProps { /** * Indicates whether the fieldset is disabled. */ disabled?: boolean | 'true' | 'false'; /** * The id of the fieldset. */ id?: string; /** * Indicates whether the fieldset is invalid. */ invalid?: boolean; }