import { type InputProps } from '../Input/InputProps'; export interface NumberInputProps extends InputProps { min?: number; max?: number; defaultValue?: string; fractionDigits?: number; } export declare const NumberInput: import("@redneckz/uni-jsx").UNIComponent;