export declare const inputNumberProps: { readonly step: { readonly type: NumberConstructor; readonly default: 1; }; readonly stepStrictly: { readonly type: BooleanConstructor; readonly default: false; }; readonly max: { readonly type: NumberConstructor; readonly default: number; }; readonly min: { readonly type: NumberConstructor; readonly default: number; }; readonly modelValue: { readonly type: NumberConstructor; }; readonly disabled: { readonly type: BooleanConstructor; readonly default: undefined; }; readonly size: { readonly type: PropType<"default" | "small" | "large">; }; /** 以金额显示 */ readonly money: BooleanConstructor; /** 是否显示控制按钮 */ readonly controls: { readonly type: BooleanConstructor; readonly default: false; }; readonly placeholder: StringConstructor; /** 精度 */ readonly precision: { readonly type: NumberConstructor; readonly validator: (val: number) => boolean; }; /** 是否可清除 */ readonly clearable: BooleanConstructor; /** 外部后插入值 */ readonly append: { readonly type: PropType; readonly default: ""; }; /** 输出倍数 */ readonly multiple: { readonly type: NumberConstructor; readonly default: 1; }; readonly label: { type: StringConstructor; }; readonly field: { type: StringConstructor; }; readonly tips: { type: StringConstructor; }; readonly span: { type: PropType; }; readonly required: { type: BooleanConstructor; }; }; export declare const inputNumberEmits: { change: (newVal?: number, oldVal?: number) => boolean; blur: (e: FocusEvent) => boolean; focus: (e: FocusEvent) => boolean; input: (val?: number) => boolean; 'update:modelValue': (val?: number) => boolean; };