import * as React from 'react'; import { View } from 'react-native'; import type { ZestUIComponentProps } from '../../types'; /** * Groups related fields, with an optional `Fieldset.Legend`. * Renders a ``. * * A disabled fieldset disables every `Field.Root` inside it. */ export declare function FieldsetRoot(componentProps: FieldsetRoot.Props): React.JSX.Element; export interface FieldsetRootState { /** * Whether the fieldset is disabled. */ disabled: boolean; } export interface FieldsetRootProps extends ZestUIComponentProps { /** * Whether the fieldset and all fields inside it are disabled. * @default false */ disabled?: boolean | undefined; } export declare namespace FieldsetRoot { type State = FieldsetRootState; type Props = FieldsetRootProps; } //# sourceMappingURL=FieldsetRoot.d.ts.map