import { ComponentOptionsMixin } from 'vue'; import { ComponentProvideOptions } from 'vue'; import { DefineComponent } from 'vue'; import { ExtractPropTypes } from 'vue'; import { PropType } from 'vue'; import { PublicProps } from 'vue'; declare type __VLS_NonUndefinedable = T extends undefined ? never : T; declare type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; declare type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: PropType<__VLS_NonUndefinedable>; } : { type: PropType; required: true; }; }; declare type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; declare const _default: DefineComponent, { digitCount: number; errorText: undefined; successText: undefined; hintText: undefined; modelValue: undefined; }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:model-value": (value: string | null) => void; change: (params: { originalEvent: Event; value: string | null; }) => void; focus: (params: Event) => void; blur: (params: Event) => void; }, string, PublicProps, Readonly, { digitCount: number; errorText: undefined; successText: undefined; hintText: undefined; modelValue: undefined; }>>> & Readonly<{ onBlur?: ((params: Event) => any) | undefined; onChange?: ((params: { originalEvent: Event; value: string | null; }) => any) | undefined; onFocus?: ((params: Event) => any) | undefined; "onUpdate:model-value"?: ((value: string | null) => any) | undefined; }>, { errorText: string; hintText: string; modelValue: string; digitCount: number; successText: string; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export default _default; export declare interface VerificationCodeInputProps { digitCount?: number; /** * Error text to display. */ errorText?: string; /** * Success text to display. */ successText?: string; /** * Hint text to display. */ hintText?: string; /** * One time password/code */ modelValue?: string; } export { }