import * as class_variance_authority_types from 'class-variance-authority/types'; import { Field as Field$1 } from '@base-ui/react/field'; import { VariantProps } from 'class-variance-authority'; import * as React from 'react'; import { Label } from './label.js'; declare function FieldSet({ className, ref, ...props }: React.ComponentProps<'fieldset'>): React.JSX.Element; declare function FieldLegend({ className, variant, ref, ...props }: React.ComponentProps<'legend'> & { variant?: 'legend' | 'label'; }): React.JSX.Element; declare function FieldGroup({ className, ref, ...props }: React.ComponentProps<'div'>): React.JSX.Element; declare const fieldVariants: (props?: ({ orientation?: "horizontal" | "vertical" | "responsive" | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string; declare function Field({ className, orientation, ref, children, ...props }: React.ComponentProps & VariantProps): React.JSX.Element; declare function FieldContent({ className, ref, ...props }: React.ComponentProps<'div'>): React.JSX.Element; declare function FieldLabel({ className, ref, ...props }: React.ComponentProps): React.JSX.Element; declare function FieldTitle({ className, ref, ...props }: React.ComponentProps<'div'>): React.JSX.Element; declare function FieldDescription({ className, ref, ...props }: React.ComponentProps<'p'>): React.JSX.Element; declare function FieldSeparator({ children, className, ref, ...props }: React.ComponentProps<'div'> & { children?: React.ReactNode; }): React.JSX.Element; declare function FieldError({ className, children, errors, ref, ...props }: React.ComponentProps<'div'> & { errors?: Array<{ message?: string; } | undefined>; }): React.JSX.Element | null; type FieldProps = React.ComponentProps; type FieldSetProps = React.ComponentProps; type FieldLegendProps = React.ComponentProps; type FieldGroupProps = React.ComponentProps; type FieldContentProps = React.ComponentProps; type FieldLabelProps = React.ComponentProps; type FieldTitleProps = React.ComponentProps; type FieldDescriptionProps = React.ComponentProps; type FieldSeparatorProps = React.ComponentProps; type FieldErrorProps = React.ComponentProps; export { Field, FieldContent, type FieldContentProps, FieldDescription, type FieldDescriptionProps, FieldError, type FieldErrorProps, FieldGroup, type FieldGroupProps, FieldLabel, type FieldLabelProps, FieldLegend, type FieldLegendProps, type FieldProps, FieldSeparator, type FieldSeparatorProps, FieldSet, type FieldSetProps, FieldTitle, type FieldTitleProps };