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