import { Label } from "./label.js"; import { BoxProps } from "./stack.js"; import { TypographyProps } from "./typography.js"; import * as react_jsx_runtime83 from "react/jsx-runtime"; import { VariantProps } from "class-variance-authority"; import * as class_variance_authority_types5 from "class-variance-authority/types"; //#region ui/field.d.ts declare function FieldSet({ className, ...props }: BoxProps): react_jsx_runtime83.JSX.Element; declare function FieldLegend({ className, variant, ...props }: BoxProps & { variant?: 'legend' | 'label'; }): react_jsx_runtime83.JSX.Element; declare function FieldGroup({ className, ...props }: BoxProps): react_jsx_runtime83.JSX.Element; declare const fieldVariants: (props?: ({ orientation?: "vertical" | "horizontal" | "responsive" | null | undefined; } & class_variance_authority_types5.ClassProp) | undefined) => string; declare function Field({ className, orientation, ...props }: BoxProps & VariantProps): react_jsx_runtime83.JSX.Element; declare function FieldContent({ className, ...props }: BoxProps): react_jsx_runtime83.JSX.Element; declare function FieldLabel({ className, ...props }: React.ComponentProps): react_jsx_runtime83.JSX.Element; declare function FieldTitle({ className, ...props }: BoxProps): react_jsx_runtime83.JSX.Element; declare function FieldDescription({ className, ...props }: TypographyProps): react_jsx_runtime83.JSX.Element; declare function FieldSeparator({ children, className, ...props }: BoxProps & { children?: React.ReactNode; }): react_jsx_runtime83.JSX.Element; declare function FieldError({ className, children, errors, ...props }: BoxProps & { errors?: ({ message?: string; } | undefined)[]; }): react_jsx_runtime83.JSX.Element | null; //#endregion export { Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle }; //# sourceMappingURL=field.d.ts.map