import { IconProps } from '../Icon/index.js'; import { Style } from 'inlines'; export type NumberInputProps = { value?: number; onChange?: (value: number) => void; disabled?: boolean; placeholder?: string; prefix?: string; leadIcon?: IconProps['variant']; error?: boolean; suffix?: string; autoFocus?: boolean; label?: string; description?: string; errorMessage?: string; showSteps?: boolean; step?: number; min?: number; max?: number; int?: boolean; style?: Style; }; export declare const NumberInput: import("react").ForwardRefExoticComponent>;