import type { SharedFieldErrorProps, SharedFieldLegendProps, SharedFieldProps } from '@contractspec/lib.ui-kit-core/interfaces'; import { type VariantProps } from 'class-variance-authority'; import * as React from 'react'; import { Label } from './label'; declare function FieldSet({ className, ...props }: React.ComponentPropsWithoutRef<'fieldset'>): import("react/jsx-runtime").JSX.Element; declare function FieldLegend({ className, variant, ...props }: React.ComponentPropsWithoutRef<'legend'> & SharedFieldLegendProps): import("react/jsx-runtime").JSX.Element; declare function FieldGroup({ className, ...props }: React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element; declare const fieldVariants: (props?: ({ orientation?: "horizontal" | "vertical" | "responsive" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare function Field({ className, orientation, ...props }: React.ComponentPropsWithoutRef<'div'> & SharedFieldProps & VariantProps): import("react/jsx-runtime").JSX.Element; declare function FieldContent({ className, ...props }: React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element; declare function FieldLabel({ className, ...props }: React.ComponentPropsWithoutRef): import("react/jsx-runtime").JSX.Element; declare function FieldTitle({ className, ...props }: React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element; declare function FieldDescription({ className, ...props }: React.ComponentPropsWithoutRef<'p'>): import("react/jsx-runtime").JSX.Element; declare function FieldSeparator({ children, className, ...props }: React.ComponentPropsWithoutRef<'div'> & { children?: React.ReactNode; }): import("react/jsx-runtime").JSX.Element; declare function FieldError({ className, children, errors, ...props }: React.ComponentPropsWithoutRef<'div'> & SharedFieldErrorProps): import("react/jsx-runtime").JSX.Element | null; export { Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, };