import type { App } from 'vue'; import type { SDOptions } from '../_utils/types'; import _InputMask from './input-mask.vue'; declare const InputMask: { new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins & Readonly<{ onClear?: ((event: MouseEvent) => any) | undefined; onFocus?: ((event: FocusEvent) => any) | undefined; onBlur?: ((event: FocusEvent) => any) | undefined; onChange?: ((value: string, event: Event) => any) | undefined; onInput?: ((value: string, event: Event) => any) | undefined; "onUpdate:modelValue"?: ((value: string) => any) | undefined; onPressEnter?: ((event: KeyboardEvent) => any) | undefined; onComplete?: ((value: string) => any) | undefined; }>, { readonly inputRef: HTMLInputElement | undefined; focus: () => void | undefined; blur: () => void | undefined; }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { clear: (event: MouseEvent) => any; focus: (event: FocusEvent) => any; blur: (event: FocusEvent) => any; change: (value: string, event: Event) => any; input: (value: string, event: Event) => any; "update:modelValue": (value: string) => any; pressEnter: (event: KeyboardEvent) => any; complete: (value: string) => any; }, import("vue").PublicProps, { disabled: boolean; error: boolean; readonly: boolean | string; defaultValue: string; allowClear: boolean; fitWidth: boolean; maxWFull: boolean; showWordLimit: boolean; maskChar: string | null; alwaysShowMask: boolean; }, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly & Readonly<{ onClear?: ((event: MouseEvent) => any) | undefined; onFocus?: ((event: FocusEvent) => any) | undefined; onBlur?: ((event: FocusEvent) => any) | undefined; onChange?: ((value: string, event: Event) => any) | undefined; onInput?: ((value: string, event: Event) => any) | undefined; "onUpdate:modelValue"?: ((value: string) => any) | undefined; onPressEnter?: ((event: KeyboardEvent) => any) | undefined; onComplete?: ((value: string) => any) | undefined; }>, { readonly inputRef: HTMLInputElement | undefined; focus: () => void | undefined; blur: () => void | undefined; }, {}, {}, {}, { disabled: boolean; error: boolean; readonly: boolean | string; defaultValue: string; allowClear: boolean; fitWidth: boolean; maxWFull: boolean; showWordLimit: boolean; maskChar: string | null; alwaysShowMask: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & import("vue").ComponentOptionsBase & Readonly<{ onClear?: ((event: MouseEvent) => any) | undefined; onFocus?: ((event: FocusEvent) => any) | undefined; onBlur?: ((event: FocusEvent) => any) | undefined; onChange?: ((value: string, event: Event) => any) | undefined; onInput?: ((value: string, event: Event) => any) | undefined; "onUpdate:modelValue"?: ((value: string) => any) | undefined; onPressEnter?: ((event: KeyboardEvent) => any) | undefined; onComplete?: ((value: string) => any) | undefined; }>, { readonly inputRef: HTMLInputElement | undefined; focus: () => void | undefined; blur: () => void | undefined; }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { clear: (event: MouseEvent) => any; focus: (event: FocusEvent) => any; blur: (event: FocusEvent) => any; change: (value: string, event: Event) => any; input: (value: string, event: Event) => any; "update:modelValue": (value: string) => any; pressEnter: (event: KeyboardEvent) => any; complete: (value: string) => any; }, string, { disabled: boolean; error: boolean; readonly: boolean | string; defaultValue: string; allowClear: boolean; fitWidth: boolean; maxWFull: boolean; showWordLimit: boolean; maskChar: string | null; alwaysShowMask: boolean; }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => { $slots: { prefix?: () => unknown; suffix?: () => unknown; prepend?: () => unknown; append?: () => unknown; }; }) & { install: (app: App, options?: SDOptions) => void; }; export type InputMaskInstance = InstanceType; export type { InputMaskBeforeChange, InputMaskPattern, InputMaskPresetDefinition, InputMaskPresetName, InputMaskProps, InputMaskSelection, InputMaskState, InputMaskToken, } from './types'; export { defaultInputMaskFormatChars, formatInputMask } from './mask-engine'; export { inputMaskPresets } from './presets'; export default InputMask;