import { VariantProps } from 'class-variance-authority'; import { Label } from '../label'; import { ClassProp } from 'class-variance-authority/types'; declare function FieldSet({ className, ...props }: React.ComponentProps<"fieldset">): import("react/jsx-runtime").JSX.Element; declare function FieldLegend({ className, variant, ...props }: React.ComponentProps<"legend"> & { variant?: "legend" | "label"; }): import("react/jsx-runtime").JSX.Element; declare function FieldGroup({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; declare const fieldVariants: (props?: ({ orientation?: "horizontal" | "vertical" | "responsive" | null | undefined; } & ClassProp) | undefined) => string; declare function Field({ className, orientation, ...props }: React.ComponentProps<"div"> & VariantProps): import("react/jsx-runtime").JSX.Element; declare function FieldContent({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; declare function FieldLabel({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function FieldTitle({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; declare function FieldDescription({ className, ...props }: React.ComponentProps<"p">): import("react/jsx-runtime").JSX.Element; declare function FieldSeparator({ children, className, ...props }: React.ComponentProps<"div"> & { children?: React.ReactNode; }): import("react/jsx-runtime").JSX.Element; declare function FieldError({ className, children, errors, ...props }: React.ComponentProps<"div"> & { errors?: Array<{ message?: string; } | undefined>; }): import("react/jsx-runtime").JSX.Element | null; export { Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, };