import { type VariantProps } from "class-variance-authority"; declare const fieldGroupVariants: (props?: ({ direction?: "row" | "col" | "floating" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type FieldGroupProps = VariantProps & { name?: string; label: string; children?: React.ReactNode; }; export declare function FieldGroup({ direction, label, children, name, }: FieldGroupProps): import("react/jsx-runtime").JSX.Element; export {};