import type { FC, HTMLAttributes } from 'react';
import { Field as ArkUiField } from '@ark-ui/react/field';
import { type VariantProps } from 'class-variance-authority';
import { type TestableProps } from '../../utils/testId';
declare const fieldVariants: (props?: ({
orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
type FieldNativeProps = Omit, 'className'> & Omit;
type FieldVariantsProps = VariantProps;
type FieldProps = FieldNativeProps & FieldVariantsProps & TestableProps;
export declare const Field: FC;
export {};