import { ExtractPropTypes } from 'vue'; /** * 属性 */ export declare const inputProps: { modelValue: { type: (StringConstructor | NumberConstructor)[]; default: () => string; }; inputType: { type: StringConstructor; default: () => string; }; placeholder: { type: StringConstructor; default: () => string; }; decimalLimit: { type: NumberConstructor; default: () => number; }; showThousands: { type: BooleanConstructor; default: () => boolean; }; }; export type InputProps = ExtractPropTypes; /** * 事件 */ export declare const inputEmits: { 'update:modelValue': (_value: any, _e?: MouseEvent) => boolean; };