import { Props } from './types'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Props = Props; type __VLS_PublicProps = { modelValue?: string; } & __VLS_Props; declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (value: string) => any; } & { blur: (e: MouseEvent) => any; focus: (e: MouseEvent) => any; }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onBlur?: ((e: MouseEvent) => any) | undefined; onFocus?: ((e: MouseEvent) => any) | undefined; "onUpdate:modelValue"?: ((value: string) => any) | undefined; }>, { type: "number" | "password"; isFocus: boolean; skinType: "white" | "dark"; num: number; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; export default _default;