import { type Rules } from '../hooks/useValidtor'; export interface Props { placeholder?: string; rules?: Rules; disabled?: boolean; type?: string; min?: number; max?: number; isShowBlur?: boolean; precision?: number; maxlength?: number; clearable?: boolean; } declare const _default: (__VLS_props: NonNullable>["props"], __VLS_ctx?: __VLS_PrettifyLocal>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable>["expose"], __VLS_setup?: Promise<{ props: __VLS_PrettifyLocal & Omit<{ readonly onChange?: ((value: T) => any) | undefined; readonly onError?: ((result: boolean) => any) | undefined; readonly onFocus?: (() => any) | undefined; readonly onSubmit?: ((value: T) => any) | undefined; readonly onClear?: (() => any) | undefined; } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onFocus" | "onChange" | "onSubmit" | "onError" | "onClear"> & ({ modelValue?: T; } & Props)> & import("vue").PublicProps; expose(exposed: import("vue").ShallowUnwrapRef<{ getValue(): Promise; focus(): void; }>): void; attrs: any; slots: { blur?(_: {}): any; }; emit: { (e: "change" | "submit", value: T): void; (e: "error", result: boolean): void; (e: "clear" | "focus"): void; } & { 'update:modelValue': [modelValue: T]; }; }>) => import("vue").VNode & { __ctx?: Awaited; }; export default _default; type __VLS_PrettifyLocal = { [K in keyof T]: T[K]; } & {};