import type { FC, Ref } from 'react'; import { NumberInput as ArkUiNumberInput } from '@ark-ui/react/number-input'; import type { VariantProps } from 'class-variance-authority'; import type { TestableProps } from '../../utils/testId'; import { numberInputRootVariants } from './classes'; type NumberInputNativeProps = Omit; type NumberInputVariantsProps = VariantProps; interface NumberInputBaseProps { error?: boolean; ref?: Ref; } export type NumberInputProps = NumberInputNativeProps & NumberInputVariantsProps & NumberInputBaseProps & TestableProps; export declare const NumberInput: FC; export {};