import { TextFieldProps } from 'react-aria-components'; export declare const counterContainerVariants: (props?: ({ orientation?: "vertical" | "horizontal" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type CounterProps = Omit & { orientation?: 'horizontal' | 'vertical'; onDelete?: () => void; isDisabled?: boolean; isInvalid?: boolean; onChange: (value: number) => void; label?: string; subtitle?: string; min?: number; max?: number; value?: number; step?: number; isDeleteButtonVisible?: boolean; 'data-testid'?: string; }; //# sourceMappingURL=types.d.ts.map