import * as React from 'react'; import { type FieldRootState } from "../root/FieldRoot.mjs"; import type { BaseUIComponentProps } from "../../internals/types.mjs"; /** * Groups individual items in a checkbox group or radio group with a label and description. * Renders a `
` element. * * Documentation: [Base UI Field](https://base-ui.com/react/components/field) */ export declare const FieldItem: React.ForwardRefExoticComponent & React.RefAttributes>; export interface FieldItemState extends FieldRootState {} export interface FieldItemProps extends BaseUIComponentProps<'div', FieldItemState> { /** * Whether the wrapped control should ignore user interaction. * The `disabled` prop on `` takes precedence over this. * @default false */ disabled?: boolean | undefined; } export declare namespace FieldItem { type State = FieldItemState; type Props = FieldItemProps; }