import { Country, CountryGuesser, CountryOrIso2 } from '../types/countries';
import { CountryIconMode, CountryPhoneExample, MessageOptions, MessageResolver, PhoneValidator } from '../types/options';
import { ParsedPhoneNumber, PhoneNumberFormat } from 'awesome-phonenumber';
import { nextTick, PropType } from 'vue';
export type VPhoneCountriesItems = ((Country & {
    preferred?: boolean;
}) | {
    divider: boolean;
})[];
export type ValidationResult = string | boolean;
export type ValidationRule = ValidationResult | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>);
export type ValidateOnValue = 'blur' | 'input' | 'submit';
export type VPhoneInputValidationResult = string | boolean | PromiseLike<string | boolean>;
export type VPhoneInputValidationRule = VPhoneInputValidationResult | ((input: string, phone: ParsedPhoneNumber, messageOptions: MessageOptions) => VPhoneInputValidationResult);
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    label: {
        type: PropType<MessageResolver>;
        default: () => MessageResolver;
    };
    ariaLabel: {
        type: PropType<MessageResolver>;
        default: () => MessageResolver;
    };
    countryLabel: {
        type: PropType<MessageResolver>;
        default: () => MessageResolver;
    };
    countryAriaLabel: {
        type: PropType<MessageResolver>;
        default: () => MessageResolver;
    };
    placeholder: {
        type: PropType<MessageResolver>;
        default: () => MessageResolver;
    };
    hint: {
        type: PropType<MessageResolver>;
        default: () => MessageResolver;
    };
    invalidMessage: {
        type: PropType<MessageResolver>;
        default: () => MessageResolver;
    };
    example: {
        type: PropType<CountryPhoneExample | undefined>;
        default: () => CountryPhoneExample | undefined;
    };
    appendIcon: {
        type: StringConstructor;
        default: undefined;
    };
    appendInnerIcon: {
        type: StringConstructor;
        default: undefined;
    };
    prependIcon: {
        type: StringConstructor;
        default: undefined;
    };
    prependInnerIcon: {
        type: StringConstructor;
        default: undefined;
    };
    rules: {
        type: PropType<VPhoneInputValidationRule[]>;
        default: () => never[];
    };
    validateOn: {
        type: PropType<ValidateOnValue | `${ValidateOnValue} lazy` | `lazy ${ValidateOnValue}` | "lazy">;
        default: undefined;
    };
    phoneValidator: {
        type: PropType<PhoneValidator>;
        default: PhoneValidator;
    };
    countryIconMode: {
        type: PropType<CountryIconMode>;
        default: () => CountryIconMode;
    };
    allCountries: {
        type: PropType<Country[]>;
        default: () => Country[];
    };
    preferCountries: {
        type: PropType<CountryOrIso2[]>;
        default: () => string[];
    };
    includeCountries: {
        type: PropType<CountryOrIso2[]>;
        default: () => string[];
    };
    excludeCountries: {
        type: PropType<CountryOrIso2[]>;
        default: () => string[];
    };
    defaultCountry: {
        type: PropType<CountryOrIso2 | undefined>;
        default: () => string | undefined;
    };
    countryGuesser: {
        type: PropType<CountryGuesser>;
        default: () => CountryGuesser;
    };
    guessCountry: {
        type: BooleanConstructor;
        default: () => boolean;
    };
    disableGuessLoading: {
        type: BooleanConstructor;
        default: () => boolean;
    };
    enableSearchingCountry: {
        type: BooleanConstructor;
        default: () => boolean;
    };
    displayFormat: {
        type: PropType<PhoneNumberFormat>;
        default: () => PhoneNumberFormat;
    };
    country: {
        type: StringConstructor;
        default: string;
    };
    modelValue: {
        type: PropType<string | null>;
        default: string;
    };
    wrapperProps: {
        type: ObjectConstructor;
        default: () => {};
    };
    countryProps: {
        type: ObjectConstructor;
        default: () => {};
    };
    phoneProps: {
        type: ObjectConstructor;
        default: () => {};
    };
}>, {
    countryInputRef: import('vue').Ref<null, null>;
    phoneInputRef: import('vue').Ref<import('vue').CreateComponentPublicInstanceWithMixins<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        prefix?: string | undefined;
        role?: string | undefined;
        class?: any;
        theme?: string | undefined;
        placeholder?: string | undefined;
        counter?: string | number | boolean | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        modelValue?: any;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
        suffix?: string | undefined;
        counterValue?: number | ((value: any) => number) | undefined;
        modelModifiers?: Record<string, boolean> | undefined;
    } & {
        $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: (() => import('vue').VNodeChild) | undefined;
            counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        };
        'v-slots'?: {
            message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: false | (() => import('vue').VNodeChild) | undefined;
            counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        } | undefined;
    } & {
        "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            label: string | undefined;
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
        "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        "onUpdate:modelValue"?: ((val: string) => any) | undefined;
        "onClick:control"?: ((e: MouseEvent) => any) | undefined;
        "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
    }, HTMLInputElement & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }> & Omit<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: string, ...args: any[]) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & {}, {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    }> & Omit<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        baseColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
    }, "style" | "error" | "reset" | "persistentHint" | "density" | "direction" | "disabled" | "readonly" | "messages" | "rules" | "isValid" | "focused" | "errorMessages" | "maxErrors" | "validate" | "resetValidation" | "centerAffix" | "glow" | "hideSpinButtons"> & import('vue').ShallowUnwrapRef<{
        reset: () => Promise<void>;
        resetValidation: () => Promise<void>;
        validate: (silent?: boolean) => Promise<string[]>;
        isValid: import('vue').ComputedRef<boolean | null>;
        errorMessages: import('vue').ComputedRef<string[]>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "label" | "style" | "error" | "class" | "name" | keyof import('vue').VNodeProps | "hint" | "persistentHint" | "id" | "density" | "hideDetails" | "direction" | "color" | "theme" | "disabled" | "readonly" | "maxWidth" | "minWidth" | "width" | "appendIcon" | "baseColor" | "prependIcon" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "centerAffix" | "glow" | "hideSpinButtons" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "$children" | "v-slots" | "v-slot:message" | "v-slot:details" | "v-slot:append" | "v-slot:prepend" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }> & Omit<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
            default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: "update:focused", focused: boolean) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        } & {
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        }, {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:focused": (focused: boolean) => true;
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[];
            "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[];
            loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
            default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    }> & Omit<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    } & {
        id?: string | undefined;
        color?: string | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
    }, "reverse" | "flat" | "style" | "error" | "variant" | "tile" | "singleLine" | "disabled" | "rounded" | "active" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
        controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
        fieldIconColor: import('vue').ComputedRef<string | undefined>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "reverse" | "flat" | "label" | "style" | "error" | "class" | keyof import('vue').VNodeProps | "id" | "variant" | "tile" | "singleLine" | "color" | "bgColor" | "theme" | "disabled" | "rounded" | "active" | "baseColor" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "loading" | "onUpdate:focused" | "modelValue" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "$children" | "v-slots" | "v-slot:clear" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & {
        _allExposed: {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        } | {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        } | {};
    }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
        'click:control': (e: MouseEvent) => true;
        'mousedown:control': (e: MouseEvent) => true;
        'update:focused': (focused: boolean) => true;
        'update:modelValue': (val: string) => true;
    }, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    }, true, {}, import('vue').SlotsType<Partial<{
        message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
        clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            props: Record<string, any>;
        }) => import('vue').VNode[];
        details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
        label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            label: string | undefined;
            props: Record<string, any>;
        }) => import('vue').VNode[];
        append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
        prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
        loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
        'prepend-inner': (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
        'append-inner': (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
        default: () => import('vue').VNode[];
        counter: (arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNode[];
    }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
        P: {};
        B: {};
        D: {};
        C: {};
        M: {};
        Defaults: {};
    }, {
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        prefix?: string | undefined;
        role?: string | undefined;
        class?: any;
        theme?: string | undefined;
        placeholder?: string | undefined;
        counter?: string | number | boolean | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        modelValue?: any;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
        suffix?: string | undefined;
        counterValue?: number | ((value: any) => number) | undefined;
        modelModifiers?: Record<string, boolean> | undefined;
    } & {
        $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: (() => import('vue').VNodeChild) | undefined;
            counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        };
        'v-slots'?: {
            message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: false | (() => import('vue').VNodeChild) | undefined;
            counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        } | undefined;
    } & {
        "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            label: string | undefined;
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
        "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        "onUpdate:modelValue"?: ((val: string) => any) | undefined;
        "onClick:control"?: ((e: MouseEvent) => any) | undefined;
        "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
    }, HTMLInputElement & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }> & Omit<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: string, ...args: any[]) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & {}, {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    }> & Omit<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        baseColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
    }, "style" | "error" | "reset" | "persistentHint" | "density" | "direction" | "disabled" | "readonly" | "messages" | "rules" | "isValid" | "focused" | "errorMessages" | "maxErrors" | "validate" | "resetValidation" | "centerAffix" | "glow" | "hideSpinButtons"> & import('vue').ShallowUnwrapRef<{
        reset: () => Promise<void>;
        resetValidation: () => Promise<void>;
        validate: (silent?: boolean) => Promise<string[]>;
        isValid: import('vue').ComputedRef<boolean | null>;
        errorMessages: import('vue').ComputedRef<string[]>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "label" | "style" | "error" | "class" | "name" | keyof import('vue').VNodeProps | "hint" | "persistentHint" | "id" | "density" | "hideDetails" | "direction" | "color" | "theme" | "disabled" | "readonly" | "maxWidth" | "minWidth" | "width" | "appendIcon" | "baseColor" | "prependIcon" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "centerAffix" | "glow" | "hideSpinButtons" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "$children" | "v-slots" | "v-slot:message" | "v-slot:details" | "v-slot:append" | "v-slot:prepend" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }> & Omit<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
            default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: "update:focused", focused: boolean) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        } & {
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        }, {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:focused": (focused: boolean) => true;
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[];
            "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[];
            loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
            default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    }> & Omit<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    } & {
        id?: string | undefined;
        color?: string | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
    }, "reverse" | "flat" | "style" | "error" | "variant" | "tile" | "singleLine" | "disabled" | "rounded" | "active" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
        controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
        fieldIconColor: import('vue').ComputedRef<string | undefined>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "reverse" | "flat" | "label" | "style" | "error" | "class" | keyof import('vue').VNodeProps | "id" | "variant" | "tile" | "singleLine" | "color" | "bgColor" | "theme" | "disabled" | "rounded" | "active" | "baseColor" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "loading" | "onUpdate:focused" | "modelValue" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "$children" | "v-slots" | "v-slot:clear" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & {
        _allExposed: {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        } | {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        } | {};
    }, {}, {}, {}, {
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    }> | null, import('vue').CreateComponentPublicInstanceWithMixins<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        prefix?: string | undefined;
        role?: string | undefined;
        class?: any;
        theme?: string | undefined;
        placeholder?: string | undefined;
        counter?: string | number | boolean | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        modelValue?: any;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
        suffix?: string | undefined;
        counterValue?: number | ((value: any) => number) | undefined;
        modelModifiers?: Record<string, boolean> | undefined;
    } & {
        $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: (() => import('vue').VNodeChild) | undefined;
            counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        };
        'v-slots'?: {
            message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: false | (() => import('vue').VNodeChild) | undefined;
            counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        } | undefined;
    } & {
        "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            label: string | undefined;
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
        "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        "onUpdate:modelValue"?: ((val: string) => any) | undefined;
        "onClick:control"?: ((e: MouseEvent) => any) | undefined;
        "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
    }, HTMLInputElement & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }> & Omit<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: string, ...args: any[]) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & {}, {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    }> & Omit<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        baseColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
    }, "style" | "error" | "reset" | "persistentHint" | "density" | "direction" | "disabled" | "readonly" | "messages" | "rules" | "isValid" | "focused" | "errorMessages" | "maxErrors" | "validate" | "resetValidation" | "centerAffix" | "glow" | "hideSpinButtons"> & import('vue').ShallowUnwrapRef<{
        reset: () => Promise<void>;
        resetValidation: () => Promise<void>;
        validate: (silent?: boolean) => Promise<string[]>;
        isValid: import('vue').ComputedRef<boolean | null>;
        errorMessages: import('vue').ComputedRef<string[]>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "label" | "style" | "error" | "class" | "name" | keyof import('vue').VNodeProps | "hint" | "persistentHint" | "id" | "density" | "hideDetails" | "direction" | "color" | "theme" | "disabled" | "readonly" | "maxWidth" | "minWidth" | "width" | "appendIcon" | "baseColor" | "prependIcon" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "centerAffix" | "glow" | "hideSpinButtons" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "$children" | "v-slots" | "v-slot:message" | "v-slot:details" | "v-slot:append" | "v-slot:prepend" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }> & Omit<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
            default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: "update:focused", focused: boolean) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        } & {
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        }, {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:focused": (focused: boolean) => true;
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[];
            "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[];
            loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
            default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    }> & Omit<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    } & {
        id?: string | undefined;
        color?: string | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
    }, "reverse" | "flat" | "style" | "error" | "variant" | "tile" | "singleLine" | "disabled" | "rounded" | "active" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
        controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
        fieldIconColor: import('vue').ComputedRef<string | undefined>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "reverse" | "flat" | "label" | "style" | "error" | "class" | keyof import('vue').VNodeProps | "id" | "variant" | "tile" | "singleLine" | "color" | "bgColor" | "theme" | "disabled" | "rounded" | "active" | "baseColor" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "loading" | "onUpdate:focused" | "modelValue" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "$children" | "v-slots" | "v-slot:clear" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & {
        _allExposed: {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        } | {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        } | {};
    }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
        'click:control': (e: MouseEvent) => true;
        'mousedown:control': (e: MouseEvent) => true;
        'update:focused': (focused: boolean) => true;
        'update:modelValue': (val: string) => true;
    }, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    }, true, {}, import('vue').SlotsType<Partial<{
        message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
        clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            props: Record<string, any>;
        }) => import('vue').VNode[];
        details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
        label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            label: string | undefined;
            props: Record<string, any>;
        }) => import('vue').VNode[];
        append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
        prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
        loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
        'prepend-inner': (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
        'append-inner': (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
        default: () => import('vue').VNode[];
        counter: (arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNode[];
    }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
        P: {};
        B: {};
        D: {};
        C: {};
        M: {};
        Defaults: {};
    }, {
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        prefix?: string | undefined;
        role?: string | undefined;
        class?: any;
        theme?: string | undefined;
        placeholder?: string | undefined;
        counter?: string | number | boolean | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        modelValue?: any;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
        suffix?: string | undefined;
        counterValue?: number | ((value: any) => number) | undefined;
        modelModifiers?: Record<string, boolean> | undefined;
    } & {
        $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: (() => import('vue').VNodeChild) | undefined;
            counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        };
        'v-slots'?: {
            message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: false | (() => import('vue').VNodeChild) | undefined;
            counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        } | undefined;
    } & {
        "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            label: string | undefined;
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
        "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        "onUpdate:modelValue"?: ((val: string) => any) | undefined;
        "onClick:control"?: ((e: MouseEvent) => any) | undefined;
        "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
    }, HTMLInputElement & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }> & Omit<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: string, ...args: any[]) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & {}, {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    }> & Omit<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        baseColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
    }, "style" | "error" | "reset" | "persistentHint" | "density" | "direction" | "disabled" | "readonly" | "messages" | "rules" | "isValid" | "focused" | "errorMessages" | "maxErrors" | "validate" | "resetValidation" | "centerAffix" | "glow" | "hideSpinButtons"> & import('vue').ShallowUnwrapRef<{
        reset: () => Promise<void>;
        resetValidation: () => Promise<void>;
        validate: (silent?: boolean) => Promise<string[]>;
        isValid: import('vue').ComputedRef<boolean | null>;
        errorMessages: import('vue').ComputedRef<string[]>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "label" | "style" | "error" | "class" | "name" | keyof import('vue').VNodeProps | "hint" | "persistentHint" | "id" | "density" | "hideDetails" | "direction" | "color" | "theme" | "disabled" | "readonly" | "maxWidth" | "minWidth" | "width" | "appendIcon" | "baseColor" | "prependIcon" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "centerAffix" | "glow" | "hideSpinButtons" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "$children" | "v-slots" | "v-slot:message" | "v-slot:details" | "v-slot:append" | "v-slot:prepend" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }> & Omit<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
            default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: "update:focused", focused: boolean) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        } & {
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        }, {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:focused": (focused: boolean) => true;
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[];
            "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[];
            loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
            default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    }> & Omit<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    } & {
        id?: string | undefined;
        color?: string | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
    }, "reverse" | "flat" | "style" | "error" | "variant" | "tile" | "singleLine" | "disabled" | "rounded" | "active" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
        controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
        fieldIconColor: import('vue').ComputedRef<string | undefined>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "reverse" | "flat" | "label" | "style" | "error" | "class" | keyof import('vue').VNodeProps | "id" | "variant" | "tile" | "singleLine" | "color" | "bgColor" | "theme" | "disabled" | "rounded" | "active" | "baseColor" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "loading" | "onUpdate:focused" | "modelValue" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "$children" | "v-slots" | "v-slot:clear" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & {
        _allExposed: {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        } | {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        } | {};
    }, {}, {}, {}, {
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    }> | null>;
    isValid: import('vue').ComputedRef<boolean>;
    errorMessages: import('vue').ComputedRef<string | readonly string[]>;
    reset: () => Promise<void>;
    resetValidation: () => Promise<void>;
    validate: (silent: boolean) => Promise<string[]>;
    wrapperAttrs: import('vue').ComputedRef<{}>;
    VTextField: any;
    countryInput: import('vue').Ref<null, null>;
    phoneInput: import('vue').Ref<import('vue').CreateComponentPublicInstanceWithMixins<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        prefix?: string | undefined;
        role?: string | undefined;
        class?: any;
        theme?: string | undefined;
        placeholder?: string | undefined;
        counter?: string | number | boolean | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        modelValue?: any;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
        suffix?: string | undefined;
        counterValue?: number | ((value: any) => number) | undefined;
        modelModifiers?: Record<string, boolean> | undefined;
    } & {
        $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: (() => import('vue').VNodeChild) | undefined;
            counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        };
        'v-slots'?: {
            message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: false | (() => import('vue').VNodeChild) | undefined;
            counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        } | undefined;
    } & {
        "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            label: string | undefined;
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
        "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        "onUpdate:modelValue"?: ((val: string) => any) | undefined;
        "onClick:control"?: ((e: MouseEvent) => any) | undefined;
        "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
    }, HTMLInputElement & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }> & Omit<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: string, ...args: any[]) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & {}, {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    }> & Omit<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        baseColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
    }, "style" | "error" | "reset" | "persistentHint" | "density" | "direction" | "disabled" | "readonly" | "messages" | "rules" | "isValid" | "focused" | "errorMessages" | "maxErrors" | "validate" | "resetValidation" | "centerAffix" | "glow" | "hideSpinButtons"> & import('vue').ShallowUnwrapRef<{
        reset: () => Promise<void>;
        resetValidation: () => Promise<void>;
        validate: (silent?: boolean) => Promise<string[]>;
        isValid: import('vue').ComputedRef<boolean | null>;
        errorMessages: import('vue').ComputedRef<string[]>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "label" | "style" | "error" | "class" | "name" | keyof import('vue').VNodeProps | "hint" | "persistentHint" | "id" | "density" | "hideDetails" | "direction" | "color" | "theme" | "disabled" | "readonly" | "maxWidth" | "minWidth" | "width" | "appendIcon" | "baseColor" | "prependIcon" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "centerAffix" | "glow" | "hideSpinButtons" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "$children" | "v-slots" | "v-slot:message" | "v-slot:details" | "v-slot:append" | "v-slot:prepend" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }> & Omit<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
            default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: "update:focused", focused: boolean) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        } & {
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        }, {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:focused": (focused: boolean) => true;
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[];
            "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[];
            loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
            default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    }> & Omit<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    } & {
        id?: string | undefined;
        color?: string | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
    }, "reverse" | "flat" | "style" | "error" | "variant" | "tile" | "singleLine" | "disabled" | "rounded" | "active" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
        controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
        fieldIconColor: import('vue').ComputedRef<string | undefined>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "reverse" | "flat" | "label" | "style" | "error" | "class" | keyof import('vue').VNodeProps | "id" | "variant" | "tile" | "singleLine" | "color" | "bgColor" | "theme" | "disabled" | "rounded" | "active" | "baseColor" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "loading" | "onUpdate:focused" | "modelValue" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "$children" | "v-slots" | "v-slot:clear" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & {
        _allExposed: {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        } | {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        } | {};
    }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
        'click:control': (e: MouseEvent) => true;
        'mousedown:control': (e: MouseEvent) => true;
        'update:focused': (focused: boolean) => true;
        'update:modelValue': (val: string) => true;
    }, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    }, true, {}, import('vue').SlotsType<Partial<{
        message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
        clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            props: Record<string, any>;
        }) => import('vue').VNode[];
        details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
        label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            label: string | undefined;
            props: Record<string, any>;
        }) => import('vue').VNode[];
        append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
        prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
        loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
        'prepend-inner': (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
        'append-inner': (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
        default: () => import('vue').VNode[];
        counter: (arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNode[];
    }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
        P: {};
        B: {};
        D: {};
        C: {};
        M: {};
        Defaults: {};
    }, {
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        prefix?: string | undefined;
        role?: string | undefined;
        class?: any;
        theme?: string | undefined;
        placeholder?: string | undefined;
        counter?: string | number | boolean | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        modelValue?: any;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
        suffix?: string | undefined;
        counterValue?: number | ((value: any) => number) | undefined;
        modelModifiers?: Record<string, boolean> | undefined;
    } & {
        $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: (() => import('vue').VNodeChild) | undefined;
            counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        };
        'v-slots'?: {
            message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: false | (() => import('vue').VNodeChild) | undefined;
            counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        } | undefined;
    } & {
        "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            label: string | undefined;
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
        "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        "onUpdate:modelValue"?: ((val: string) => any) | undefined;
        "onClick:control"?: ((e: MouseEvent) => any) | undefined;
        "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
    }, HTMLInputElement & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }> & Omit<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: string, ...args: any[]) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & {}, {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    }> & Omit<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        baseColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
    }, "style" | "error" | "reset" | "persistentHint" | "density" | "direction" | "disabled" | "readonly" | "messages" | "rules" | "isValid" | "focused" | "errorMessages" | "maxErrors" | "validate" | "resetValidation" | "centerAffix" | "glow" | "hideSpinButtons"> & import('vue').ShallowUnwrapRef<{
        reset: () => Promise<void>;
        resetValidation: () => Promise<void>;
        validate: (silent?: boolean) => Promise<string[]>;
        isValid: import('vue').ComputedRef<boolean | null>;
        errorMessages: import('vue').ComputedRef<string[]>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "label" | "style" | "error" | "class" | "name" | keyof import('vue').VNodeProps | "hint" | "persistentHint" | "id" | "density" | "hideDetails" | "direction" | "color" | "theme" | "disabled" | "readonly" | "maxWidth" | "minWidth" | "width" | "appendIcon" | "baseColor" | "prependIcon" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "centerAffix" | "glow" | "hideSpinButtons" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "$children" | "v-slots" | "v-slot:message" | "v-slot:details" | "v-slot:append" | "v-slot:prepend" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }> & Omit<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
            default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: "update:focused", focused: boolean) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        } & {
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        }, {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:focused": (focused: boolean) => true;
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[];
            "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[];
            loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
            default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    }> & Omit<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    } & {
        id?: string | undefined;
        color?: string | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
    }, "reverse" | "flat" | "style" | "error" | "variant" | "tile" | "singleLine" | "disabled" | "rounded" | "active" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
        controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
        fieldIconColor: import('vue').ComputedRef<string | undefined>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "reverse" | "flat" | "label" | "style" | "error" | "class" | keyof import('vue').VNodeProps | "id" | "variant" | "tile" | "singleLine" | "color" | "bgColor" | "theme" | "disabled" | "rounded" | "active" | "baseColor" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "loading" | "onUpdate:focused" | "modelValue" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "$children" | "v-slots" | "v-slot:clear" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & {
        _allExposed: {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        } | {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        } | {};
    }, {}, {}, {}, {
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    }> | null, import('vue').CreateComponentPublicInstanceWithMixins<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        prefix?: string | undefined;
        role?: string | undefined;
        class?: any;
        theme?: string | undefined;
        placeholder?: string | undefined;
        counter?: string | number | boolean | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        modelValue?: any;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
        suffix?: string | undefined;
        counterValue?: number | ((value: any) => number) | undefined;
        modelModifiers?: Record<string, boolean> | undefined;
    } & {
        $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: (() => import('vue').VNodeChild) | undefined;
            counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        };
        'v-slots'?: {
            message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: false | (() => import('vue').VNodeChild) | undefined;
            counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        } | undefined;
    } & {
        "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            label: string | undefined;
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
        "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        "onUpdate:modelValue"?: ((val: string) => any) | undefined;
        "onClick:control"?: ((e: MouseEvent) => any) | undefined;
        "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
    }, HTMLInputElement & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }> & Omit<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: string, ...args: any[]) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & {}, {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    }> & Omit<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        baseColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
    }, "style" | "error" | "reset" | "persistentHint" | "density" | "direction" | "disabled" | "readonly" | "messages" | "rules" | "isValid" | "focused" | "errorMessages" | "maxErrors" | "validate" | "resetValidation" | "centerAffix" | "glow" | "hideSpinButtons"> & import('vue').ShallowUnwrapRef<{
        reset: () => Promise<void>;
        resetValidation: () => Promise<void>;
        validate: (silent?: boolean) => Promise<string[]>;
        isValid: import('vue').ComputedRef<boolean | null>;
        errorMessages: import('vue').ComputedRef<string[]>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "label" | "style" | "error" | "class" | "name" | keyof import('vue').VNodeProps | "hint" | "persistentHint" | "id" | "density" | "hideDetails" | "direction" | "color" | "theme" | "disabled" | "readonly" | "maxWidth" | "minWidth" | "width" | "appendIcon" | "baseColor" | "prependIcon" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "centerAffix" | "glow" | "hideSpinButtons" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "$children" | "v-slots" | "v-slot:message" | "v-slot:details" | "v-slot:append" | "v-slot:prepend" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }> & Omit<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
            default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: "update:focused", focused: boolean) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        } & {
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        }, {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:focused": (focused: boolean) => true;
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[];
            "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[];
            loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
            default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    }> & Omit<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    } & {
        id?: string | undefined;
        color?: string | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
    }, "reverse" | "flat" | "style" | "error" | "variant" | "tile" | "singleLine" | "disabled" | "rounded" | "active" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
        controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
        fieldIconColor: import('vue').ComputedRef<string | undefined>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "reverse" | "flat" | "label" | "style" | "error" | "class" | keyof import('vue').VNodeProps | "id" | "variant" | "tile" | "singleLine" | "color" | "bgColor" | "theme" | "disabled" | "rounded" | "active" | "baseColor" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "loading" | "onUpdate:focused" | "modelValue" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "$children" | "v-slots" | "v-slot:clear" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & {
        _allExposed: {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        } | {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        } | {};
    }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
        'click:control': (e: MouseEvent) => true;
        'mousedown:control': (e: MouseEvent) => true;
        'update:focused': (focused: boolean) => true;
        'update:modelValue': (val: string) => true;
    }, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    }, true, {}, import('vue').SlotsType<Partial<{
        message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
        clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            props: Record<string, any>;
        }) => import('vue').VNode[];
        details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
        label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            label: string | undefined;
            props: Record<string, any>;
        }) => import('vue').VNode[];
        append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
        prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
        loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
        'prepend-inner': (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
        'append-inner': (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
        default: () => import('vue').VNode[];
        counter: (arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNode[];
    }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
        P: {};
        B: {};
        D: {};
        C: {};
        M: {};
        Defaults: {};
    }, {
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        prefix?: string | undefined;
        role?: string | undefined;
        class?: any;
        theme?: string | undefined;
        placeholder?: string | undefined;
        counter?: string | number | boolean | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        modelValue?: any;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
        suffix?: string | undefined;
        counterValue?: number | ((value: any) => number) | undefined;
        modelModifiers?: Record<string, boolean> | undefined;
    } & {
        $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: (() => import('vue').VNodeChild) | undefined;
            counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        };
        'v-slots'?: {
            message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: false | (() => import('vue').VNodeChild) | undefined;
            counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        } | undefined;
    } & {
        "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            label: string | undefined;
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
        "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        "onUpdate:modelValue"?: ((val: string) => any) | undefined;
        "onClick:control"?: ((e: MouseEvent) => any) | undefined;
        "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
    }, HTMLInputElement & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }> & Omit<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: string, ...args: any[]) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & {}, {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    }> & Omit<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        baseColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
    }, "style" | "error" | "reset" | "persistentHint" | "density" | "direction" | "disabled" | "readonly" | "messages" | "rules" | "isValid" | "focused" | "errorMessages" | "maxErrors" | "validate" | "resetValidation" | "centerAffix" | "glow" | "hideSpinButtons"> & import('vue').ShallowUnwrapRef<{
        reset: () => Promise<void>;
        resetValidation: () => Promise<void>;
        validate: (silent?: boolean) => Promise<string[]>;
        isValid: import('vue').ComputedRef<boolean | null>;
        errorMessages: import('vue').ComputedRef<string[]>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "label" | "style" | "error" | "class" | "name" | keyof import('vue').VNodeProps | "hint" | "persistentHint" | "id" | "density" | "hideDetails" | "direction" | "color" | "theme" | "disabled" | "readonly" | "maxWidth" | "minWidth" | "width" | "appendIcon" | "baseColor" | "prependIcon" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "centerAffix" | "glow" | "hideSpinButtons" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "$children" | "v-slots" | "v-slot:message" | "v-slot:details" | "v-slot:append" | "v-slot:prepend" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }> & Omit<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
            default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: "update:focused", focused: boolean) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        } & {
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        }, {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:focused": (focused: boolean) => true;
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[];
            "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[];
            loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
            default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    }> & Omit<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    } & {
        id?: string | undefined;
        color?: string | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
    }, "reverse" | "flat" | "style" | "error" | "variant" | "tile" | "singleLine" | "disabled" | "rounded" | "active" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
        controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
        fieldIconColor: import('vue').ComputedRef<string | undefined>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "reverse" | "flat" | "label" | "style" | "error" | "class" | keyof import('vue').VNodeProps | "id" | "variant" | "tile" | "singleLine" | "color" | "bgColor" | "theme" | "disabled" | "rounded" | "active" | "baseColor" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "loading" | "onUpdate:focused" | "modelValue" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "$children" | "v-slots" | "v-slot:clear" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & {
        _allExposed: {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        } | {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        } | {};
    }, {}, {}, {}, {
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    }> | null>;
    namespacedSlots: import('vue').Ref<Record<string, Record<string, unknown>>, Record<string, Record<string, unknown>>>;
    countrySelectComponent: import('vue').ComputedRef<{
        type: string;
        props: {
            autocomplete: string;
            'aria-autocomplete': string;
            filterKeys: string[];
        };
    } | {
        type: string;
        props: {
            autocomplete?: undefined;
            'aria-autocomplete'?: undefined;
            filterKeys?: undefined;
        };
    }>;
    countryIconComponent: import('vue').ComputedRef<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
        readonly country: {
            readonly required: true;
            readonly type: PropType<Country>;
        };
        readonly decorative: {
            readonly type: BooleanConstructor;
            readonly default: false;
        };
    }>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
        [key: string]: any;
    }>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
        readonly country: {
            readonly required: true;
            readonly type: PropType<Country>;
        };
        readonly decorative: {
            readonly type: BooleanConstructor;
            readonly default: false;
        };
    }>> & Readonly<{}>, {
        readonly decorative: boolean;
    }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any> | import('vue').DefineComponent | undefined>;
    countryAttrs: import('vue').ComputedRef<{
        menuProps: any;
        autocomplete: string;
        'aria-autocomplete': string;
        filterKeys: string[];
    } | {
        menuProps: any;
        autocomplete?: undefined;
        'aria-autocomplete'?: undefined;
        filterKeys?: undefined;
    }>;
    phoneAttrs: import('vue').ComputedRef<{}>;
    countryFocused: import('vue').Ref<boolean, boolean>;
    guessingCountry: import('vue').ComputedRef<boolean>;
    mergeRules: () => void;
    lazyCountry: import('vue').Ref<string | undefined, string | undefined>;
    lazyValue: import('vue').Ref<string | null, string | null>;
    mergedRules: import('vue').Ref<(ValidationResult | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | {
        then: <TResult1 = ValidationResult, TResult2 = never>(onfulfilled?: ((value: ValidationResult) => TResult1 | PromiseLike<TResult1>) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null | undefined) => PromiseLike<TResult1 | TResult2>;
    })[], ValidationRule[] | (ValidationResult | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | {
        then: <TResult1 = ValidationResult, TResult2 = never>(onfulfilled?: ((value: ValidationResult) => TResult1 | PromiseLike<TResult1>) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null | undefined) => PromiseLike<TResult1 | TResult2>;
    })[]>;
    activeCountry: import('vue').ComputedRef<Country>;
    labels: {
        label: import('vue').ComputedRef<import('../types/options').Message>;
        ariaLabel: import('vue').ComputedRef<import('../types/options').Message>;
        countryLabel: import('vue').ComputedRef<import('../types/options').Message>;
        countryAriaLabel: import('vue').ComputedRef<import('../types/options').Message>;
        placeholder: import('vue').ComputedRef<import('../types/options').Message>;
        hint: import('vue').ComputedRef<import('../types/options').Message>;
        invalidMessage: import('vue').ComputedRef<import('../types/options').Message>;
        messageOptions: import('vue').ComputedRef<{
            country: Country;
            example: string;
        }>;
    };
    countriesItems: import('vue').ComputedRef<({
        name: string;
        iso2: string;
        dialCode: string;
    } | {
        divider: boolean;
    })[]>;
    onCountryFocus: () => void;
    onCountryBlur: () => void;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
    'update:modelValue': (_value: string) => true;
    'update:country': (_country: string) => true;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    label: {
        type: PropType<MessageResolver>;
        default: () => MessageResolver;
    };
    ariaLabel: {
        type: PropType<MessageResolver>;
        default: () => MessageResolver;
    };
    countryLabel: {
        type: PropType<MessageResolver>;
        default: () => MessageResolver;
    };
    countryAriaLabel: {
        type: PropType<MessageResolver>;
        default: () => MessageResolver;
    };
    placeholder: {
        type: PropType<MessageResolver>;
        default: () => MessageResolver;
    };
    hint: {
        type: PropType<MessageResolver>;
        default: () => MessageResolver;
    };
    invalidMessage: {
        type: PropType<MessageResolver>;
        default: () => MessageResolver;
    };
    example: {
        type: PropType<CountryPhoneExample | undefined>;
        default: () => CountryPhoneExample | undefined;
    };
    appendIcon: {
        type: StringConstructor;
        default: undefined;
    };
    appendInnerIcon: {
        type: StringConstructor;
        default: undefined;
    };
    prependIcon: {
        type: StringConstructor;
        default: undefined;
    };
    prependInnerIcon: {
        type: StringConstructor;
        default: undefined;
    };
    rules: {
        type: PropType<VPhoneInputValidationRule[]>;
        default: () => never[];
    };
    validateOn: {
        type: PropType<ValidateOnValue | `${ValidateOnValue} lazy` | `lazy ${ValidateOnValue}` | "lazy">;
        default: undefined;
    };
    phoneValidator: {
        type: PropType<PhoneValidator>;
        default: PhoneValidator;
    };
    countryIconMode: {
        type: PropType<CountryIconMode>;
        default: () => CountryIconMode;
    };
    allCountries: {
        type: PropType<Country[]>;
        default: () => Country[];
    };
    preferCountries: {
        type: PropType<CountryOrIso2[]>;
        default: () => string[];
    };
    includeCountries: {
        type: PropType<CountryOrIso2[]>;
        default: () => string[];
    };
    excludeCountries: {
        type: PropType<CountryOrIso2[]>;
        default: () => string[];
    };
    defaultCountry: {
        type: PropType<CountryOrIso2 | undefined>;
        default: () => string | undefined;
    };
    countryGuesser: {
        type: PropType<CountryGuesser>;
        default: () => CountryGuesser;
    };
    guessCountry: {
        type: BooleanConstructor;
        default: () => boolean;
    };
    disableGuessLoading: {
        type: BooleanConstructor;
        default: () => boolean;
    };
    enableSearchingCountry: {
        type: BooleanConstructor;
        default: () => boolean;
    };
    displayFormat: {
        type: PropType<PhoneNumberFormat>;
        default: () => PhoneNumberFormat;
    };
    country: {
        type: StringConstructor;
        default: string;
    };
    modelValue: {
        type: PropType<string | null>;
        default: string;
    };
    wrapperProps: {
        type: ObjectConstructor;
        default: () => {};
    };
    countryProps: {
        type: ObjectConstructor;
        default: () => {};
    };
    phoneProps: {
        type: ObjectConstructor;
        default: () => {};
    };
}>> & Readonly<{
    "onUpdate:modelValue"?: ((_value: string) => any) | undefined;
    "onUpdate:country"?: ((_country: string) => any) | undefined;
}>, {
    country: string;
    label: MessageResolver;
    example: CountryPhoneExample | undefined;
    ariaLabel: MessageResolver;
    countryLabel: MessageResolver;
    countryAriaLabel: MessageResolver;
    placeholder: MessageResolver;
    hint: MessageResolver;
    invalidMessage: MessageResolver;
    countryIconMode: CountryIconMode;
    allCountries: Country[];
    preferCountries: CountryOrIso2[];
    includeCountries: CountryOrIso2[];
    excludeCountries: CountryOrIso2[];
    defaultCountry: CountryOrIso2 | undefined;
    countryGuesser: CountryGuesser;
    guessCountry: boolean;
    disableGuessLoading: boolean;
    enableSearchingCountry: boolean;
    displayFormat: PhoneNumberFormat;
    phoneValidator: PhoneValidator;
    appendIcon: string;
    prependIcon: string;
    rules: VPhoneInputValidationRule[];
    modelValue: string | null;
    validateOn: ValidateOnValue | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy";
    appendInnerIcon: string;
    prependInnerIcon: string;
    wrapperProps: Record<string, any>;
    countryProps: Record<string, any>;
    phoneProps: Record<string, any>;
}, {}, {
    VListItem: {
        new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<{
            replace: boolean;
            variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
            exact: boolean;
            nav: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            tag: string | import('vuetify/lib/util').JSXComponent;
            density: import('vuetify/lib/composables/density').Density;
            tile: boolean;
            slim: boolean;
            ripple: boolean | {
                class: string;
            } | undefined;
        } & {
            link?: boolean | undefined;
            height?: string | number | undefined;
            width?: string | number | undefined;
            active?: boolean | undefined;
            border?: string | number | boolean | undefined;
            color?: string | undefined;
            maxHeight?: string | number | undefined;
            maxWidth?: string | number | undefined;
            minHeight?: string | number | undefined;
            minWidth?: string | number | undefined;
            value?: any;
            title?: string | number | boolean | undefined;
            class?: any;
            theme?: string | undefined;
            to?: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric | undefined;
            lines?: false | "one" | "two" | "three" | undefined;
            onClick?: ((args_0: MouseEvent | KeyboardEvent) => void) | undefined;
            onClickOnce?: ((args_0: MouseEvent) => void) | undefined;
            href?: string | undefined;
            elevation?: string | number | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            activeColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            activeClass?: string | undefined;
            appendAvatar?: string | undefined;
            prependAvatar?: string | undefined;
            subtitle?: string | number | boolean | undefined;
        } & {
            $children?: import('vue').VNodeChild | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | {
                prepend?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
                append?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
                default?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
                title?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot) => import('vue').VNodeChild) | undefined;
                subtitle?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot) => import('vue').VNodeChild) | undefined;
            };
            "v-slots"?: {
                prepend?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
                append?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
                default?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
                title?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot) => import('vue').VNodeChild) | undefined;
                subtitle?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot) => import('vue').VNodeChild) | undefined;
            } | undefined;
        } & {
            "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:default"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:title"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:subtitle"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot) => import('vue').VNodeChild) | undefined;
        } & {
            onClick?: ((e: MouseEvent | KeyboardEvent) => any) | undefined;
        }, {
            activate: (activated: boolean, e?: Event) => void;
            isActivated: import('vue').ComputedRef<boolean>;
            isGroupActivator: boolean | undefined;
            isSelected: import('vue').ComputedRef<boolean>;
            list: {
                hasPrepend: import('vue').Ref<boolean>;
                updateHasPrepend: (value: boolean) => void;
            } | null;
            select: (selected: boolean, e?: Event) => void;
            root: {
                children: import('vue').Ref<Map<unknown, unknown[]>>;
                parents: import('vue').Ref<Map<unknown, unknown>>;
                activatable: import('vue').Ref<boolean>;
                selectable: import('vue').Ref<boolean>;
                opened: import('vue').Ref<Set<unknown>>;
                activated: import('vue').Ref<Set<unknown>>;
                selected: import('vue').Ref<Map<unknown, "on" | "off" | "indeterminate">>;
                selectedValues: import('vue').Ref<unknown[]>;
                register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
                unregister: (id: unknown) => void;
                open: (id: unknown, value: boolean, event?: Event) => void;
                activate: (id: unknown, value: boolean, event?: Event) => void;
                select: (id: unknown, value: boolean, event?: Event) => void;
                openOnSelect: (id: unknown, value: boolean, event?: Event) => void;
                getPath: (id: unknown) => unknown[];
            };
            id: import('vue').ComputedRef<{}>;
            link: import('vuetify/lib/composables/router').UseLink;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
            click: (e: MouseEvent | KeyboardEvent) => true;
        }, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {
            replace: boolean;
            link: boolean;
            variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
            exact: boolean;
            active: boolean;
            nav: boolean;
            style: import('vue').StyleValue;
            title: string | number | boolean;
            disabled: boolean;
            tag: string | import('vuetify/lib/util').JSXComponent;
            density: import('vuetify/lib/composables/density').Density;
            rounded: string | number | boolean;
            tile: boolean;
            slim: boolean;
            ripple: boolean | {
                class: string;
            } | undefined;
            subtitle: string | number | boolean;
        }, true, {}, import('vue').SlotsType<Partial<{
            prepend: (arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNode[];
            append: (arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNode[];
            default: (arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNode[];
            title: (arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot) => import('vue').VNode[];
            subtitle: (arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
            P: {};
            B: {};
            D: {};
            C: {};
            M: {};
            Defaults: {};
        }, {
            replace: boolean;
            variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
            exact: boolean;
            nav: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            tag: string | import('vuetify/lib/util').JSXComponent;
            density: import('vuetify/lib/composables/density').Density;
            tile: boolean;
            slim: boolean;
            ripple: boolean | {
                class: string;
            } | undefined;
        } & {
            link?: boolean | undefined;
            height?: string | number | undefined;
            width?: string | number | undefined;
            active?: boolean | undefined;
            border?: string | number | boolean | undefined;
            color?: string | undefined;
            maxHeight?: string | number | undefined;
            maxWidth?: string | number | undefined;
            minHeight?: string | number | undefined;
            minWidth?: string | number | undefined;
            value?: any;
            title?: string | number | boolean | undefined;
            class?: any;
            theme?: string | undefined;
            to?: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric | undefined;
            lines?: false | "one" | "two" | "three" | undefined;
            onClick?: ((args_0: MouseEvent | KeyboardEvent) => void) | undefined;
            onClickOnce?: ((args_0: MouseEvent) => void) | undefined;
            href?: string | undefined;
            elevation?: string | number | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            activeColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            activeClass?: string | undefined;
            appendAvatar?: string | undefined;
            prependAvatar?: string | undefined;
            subtitle?: string | number | boolean | undefined;
        } & {
            $children?: import('vue').VNodeChild | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | {
                prepend?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
                append?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
                default?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
                title?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot) => import('vue').VNodeChild) | undefined;
                subtitle?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot) => import('vue').VNodeChild) | undefined;
            };
            "v-slots"?: {
                prepend?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
                append?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
                default?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
                title?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot) => import('vue').VNodeChild) | undefined;
                subtitle?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot) => import('vue').VNodeChild) | undefined;
            } | undefined;
        } & {
            "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:default"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:title"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:subtitle"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot) => import('vue').VNodeChild) | undefined;
        } & {
            onClick?: ((e: MouseEvent | KeyboardEvent) => any) | undefined;
        }, {
            activate: (activated: boolean, e?: Event) => void;
            isActivated: import('vue').ComputedRef<boolean>;
            isGroupActivator: boolean | undefined;
            isSelected: import('vue').ComputedRef<boolean>;
            list: {
                hasPrepend: import('vue').Ref<boolean>;
                updateHasPrepend: (value: boolean) => void;
            } | null;
            select: (selected: boolean, e?: Event) => void;
            root: {
                children: import('vue').Ref<Map<unknown, unknown[]>>;
                parents: import('vue').Ref<Map<unknown, unknown>>;
                activatable: import('vue').Ref<boolean>;
                selectable: import('vue').Ref<boolean>;
                opened: import('vue').Ref<Set<unknown>>;
                activated: import('vue').Ref<Set<unknown>>;
                selected: import('vue').Ref<Map<unknown, "on" | "off" | "indeterminate">>;
                selectedValues: import('vue').Ref<unknown[]>;
                register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
                unregister: (id: unknown) => void;
                open: (id: unknown, value: boolean, event?: Event) => void;
                activate: (id: unknown, value: boolean, event?: Event) => void;
                select: (id: unknown, value: boolean, event?: Event) => void;
                openOnSelect: (id: unknown, value: boolean, event?: Event) => void;
                getPath: (id: unknown) => unknown[];
            };
            id: import('vue').ComputedRef<{}>;
            link: import('vuetify/lib/composables/router').UseLink;
        }, {}, {}, {}, {
            replace: boolean;
            link: boolean;
            variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
            exact: boolean;
            active: boolean;
            nav: boolean;
            style: import('vue').StyleValue;
            title: string | number | boolean;
            disabled: boolean;
            tag: string | import('vuetify/lib/util').JSXComponent;
            density: import('vuetify/lib/composables/density').Density;
            rounded: string | number | boolean;
            tile: boolean;
            slim: boolean;
            ripple: boolean | {
                class: string;
            } | undefined;
            subtitle: string | number | boolean;
        }>;
        __isFragment?: never;
        __isTeleport?: never;
        __isSuspense?: never;
    } & import('vue').ComponentOptionsBase<{
        replace: boolean;
        variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
        exact: boolean;
        nav: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        tag: string | import('vuetify/lib/util').JSXComponent;
        density: import('vuetify/lib/composables/density').Density;
        tile: boolean;
        slim: boolean;
        ripple: boolean | {
            class: string;
        } | undefined;
    } & {
        link?: boolean | undefined;
        height?: string | number | undefined;
        width?: string | number | undefined;
        active?: boolean | undefined;
        border?: string | number | boolean | undefined;
        color?: string | undefined;
        maxHeight?: string | number | undefined;
        maxWidth?: string | number | undefined;
        minHeight?: string | number | undefined;
        minWidth?: string | number | undefined;
        value?: any;
        title?: string | number | boolean | undefined;
        class?: any;
        theme?: string | undefined;
        to?: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric | undefined;
        lines?: false | "one" | "two" | "three" | undefined;
        onClick?: ((args_0: MouseEvent | KeyboardEvent) => void) | undefined;
        onClickOnce?: ((args_0: MouseEvent) => void) | undefined;
        href?: string | undefined;
        elevation?: string | number | undefined;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        activeColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        activeClass?: string | undefined;
        appendAvatar?: string | undefined;
        prependAvatar?: string | undefined;
        subtitle?: string | number | boolean | undefined;
    } & {
        $children?: import('vue').VNodeChild | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | {
            prepend?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
            append?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
            default?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
            title?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot) => import('vue').VNodeChild) | undefined;
            subtitle?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot) => import('vue').VNodeChild) | undefined;
        };
        'v-slots'?: {
            prepend?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
            append?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
            default?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
            title?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot) => import('vue').VNodeChild) | undefined;
            subtitle?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot) => import('vue').VNodeChild) | undefined;
        } | undefined;
    } & {
        "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:default"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:title"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:subtitle"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot) => import('vue').VNodeChild) | undefined;
    } & {
        onClick?: ((e: MouseEvent | KeyboardEvent) => any) | undefined;
    }, {
        activate: (activated: boolean, e?: Event) => void;
        isActivated: import('vue').ComputedRef<boolean>;
        isGroupActivator: boolean | undefined;
        isSelected: import('vue').ComputedRef<boolean>;
        list: {
            hasPrepend: import('vue').Ref<boolean>;
            updateHasPrepend: (value: boolean) => void;
        } | null;
        select: (selected: boolean, e?: Event) => void;
        root: {
            children: import('vue').Ref<Map<unknown, unknown[]>>;
            parents: import('vue').Ref<Map<unknown, unknown>>;
            activatable: import('vue').Ref<boolean>;
            selectable: import('vue').Ref<boolean>;
            opened: import('vue').Ref<Set<unknown>>;
            activated: import('vue').Ref<Set<unknown>>;
            selected: import('vue').Ref<Map<unknown, "on" | "off" | "indeterminate">>;
            selectedValues: import('vue').Ref<unknown[]>;
            register: (id: unknown, parentId: unknown, isGroup?: boolean) => void;
            unregister: (id: unknown) => void;
            open: (id: unknown, value: boolean, event?: Event) => void;
            activate: (id: unknown, value: boolean, event?: Event) => void;
            select: (id: unknown, value: boolean, event?: Event) => void;
            openOnSelect: (id: unknown, value: boolean, event?: Event) => void;
            getPath: (id: unknown) => unknown[];
        };
        id: import('vue').ComputedRef<{}>;
        link: import('vuetify/lib/composables/router').UseLink;
    }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
        click: (e: MouseEvent | KeyboardEvent) => true;
    }, string, {
        replace: boolean;
        link: boolean;
        variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
        exact: boolean;
        active: boolean;
        nav: boolean;
        style: import('vue').StyleValue;
        title: string | number | boolean;
        disabled: boolean;
        tag: string | import('vuetify/lib/util').JSXComponent;
        density: import('vuetify/lib/composables/density').Density;
        rounded: string | number | boolean;
        tile: boolean;
        slim: boolean;
        ripple: boolean | {
            class: string;
        } | undefined;
        subtitle: string | number | boolean;
    }, {}, string, import('vue').SlotsType<Partial<{
        prepend: (arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNode[];
        append: (arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNode[];
        default: (arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot) => import('vue').VNode[];
        title: (arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot) => import('vue').VNode[];
        subtitle: (arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot) => import('vue').VNode[];
    }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vuetify/lib/util').FilterPropsOptions<{
        color: StringConstructor;
        variant: Omit<{
            type: PropType<import('vuetify/lib/composables/variant').Variant>;
            default: string;
            validator: (v: any) => boolean;
        }, "type" | "default"> & {
            type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
            default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
        };
        theme: StringConstructor;
        tag: {
            type: PropType<string | import('vuetify/lib/util').JSXComponent>;
            default: string;
        };
        href: StringConstructor;
        replace: BooleanConstructor;
        to: PropType<import('vue-router').RouteLocationRaw>;
        exact: BooleanConstructor;
        rounded: {
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
            default: undefined;
        };
        tile: BooleanConstructor;
        elevation: {
            type: (StringConstructor | NumberConstructor)[];
            validator(v: any): boolean;
        };
        height: (StringConstructor | NumberConstructor)[];
        maxHeight: (StringConstructor | NumberConstructor)[];
        maxWidth: (StringConstructor | NumberConstructor)[];
        minHeight: (StringConstructor | NumberConstructor)[];
        minWidth: (StringConstructor | NumberConstructor)[];
        width: (StringConstructor | NumberConstructor)[];
        density: {
            type: PropType<import('vuetify/lib/composables/density').Density>;
            default: string;
            validator: (v: any) => boolean;
        };
        class: PropType<import('vuetify/lib/composables/component').ClassValue>;
        style: {
            type: PropType<import('vue').StyleValue>;
            default: null;
        };
        border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        active: {
            type: BooleanConstructor;
            default: undefined;
        };
        activeClass: StringConstructor;
        activeColor: StringConstructor;
        appendAvatar: StringConstructor;
        appendIcon: PropType<import('vuetify/lib/composables/icons').IconValue>;
        baseColor: StringConstructor;
        disabled: BooleanConstructor;
        lines: PropType<"one" | "two" | "three" | false>;
        link: {
            type: BooleanConstructor;
            default: undefined;
        };
        nav: BooleanConstructor;
        prependAvatar: StringConstructor;
        prependIcon: PropType<import('vuetify/lib/composables/icons').IconValue>;
        ripple: {
            type: PropType<import('vuetify/lib/directives/ripple').RippleDirectiveBinding["value"]>;
            default: boolean;
        };
        slim: BooleanConstructor;
        subtitle: {
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
            default: undefined;
        };
        title: {
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
            default: undefined;
        };
        value: null;
        onClick: PropType<(args_0: MouseEvent | KeyboardEvent) => void>;
        onClickOnce: PropType<(args_0: MouseEvent) => void>;
    }, import('vue').ExtractPropTypes<{
        color: StringConstructor;
        variant: Omit<{
            type: PropType<import('vuetify/lib/composables/variant').Variant>;
            default: string;
            validator: (v: any) => boolean;
        }, "type" | "default"> & {
            type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
            default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
        };
        theme: StringConstructor;
        tag: {
            type: PropType<string | import('vuetify/lib/util').JSXComponent>;
            default: string;
        };
        href: StringConstructor;
        replace: BooleanConstructor;
        to: PropType<import('vue-router').RouteLocationRaw>;
        exact: BooleanConstructor;
        rounded: {
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
            default: undefined;
        };
        tile: BooleanConstructor;
        elevation: {
            type: (StringConstructor | NumberConstructor)[];
            validator(v: any): boolean;
        };
        height: (StringConstructor | NumberConstructor)[];
        maxHeight: (StringConstructor | NumberConstructor)[];
        maxWidth: (StringConstructor | NumberConstructor)[];
        minHeight: (StringConstructor | NumberConstructor)[];
        minWidth: (StringConstructor | NumberConstructor)[];
        width: (StringConstructor | NumberConstructor)[];
        density: {
            type: PropType<import('vuetify/lib/composables/density').Density>;
            default: string;
            validator: (v: any) => boolean;
        };
        class: PropType<import('vuetify/lib/composables/component').ClassValue>;
        style: {
            type: PropType<import('vue').StyleValue>;
            default: null;
        };
        border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        active: {
            type: BooleanConstructor;
            default: undefined;
        };
        activeClass: StringConstructor;
        activeColor: StringConstructor;
        appendAvatar: StringConstructor;
        appendIcon: PropType<import('vuetify/lib/composables/icons').IconValue>;
        baseColor: StringConstructor;
        disabled: BooleanConstructor;
        lines: PropType<"one" | "two" | "three" | false>;
        link: {
            type: BooleanConstructor;
            default: undefined;
        };
        nav: BooleanConstructor;
        prependAvatar: StringConstructor;
        prependIcon: PropType<import('vuetify/lib/composables/icons').IconValue>;
        ripple: {
            type: PropType<import('vuetify/lib/directives/ripple').RippleDirectiveBinding["value"]>;
            default: boolean;
        };
        slim: BooleanConstructor;
        subtitle: {
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
            default: undefined;
        };
        title: {
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
            default: undefined;
        };
        value: null;
        onClick: PropType<(args_0: MouseEvent | KeyboardEvent) => void>;
        onClickOnce: PropType<(args_0: MouseEvent) => void>;
    }>>;
    VSelect: {
        new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            type: string;
            error: boolean;
            active: boolean;
            direction: "horizontal" | "vertical";
            transition: string | boolean | (import('vue').TransitionProps & {
                component?: import('vue').Component;
            }) | {
                component: import('vue').Component;
            } | null;
            menu: boolean;
            style: import('vue').StyleValue;
            role: string;
            autofocus: boolean;
            eager: boolean;
            disabled: boolean;
            readonly: boolean | null;
            messages: string | readonly string[];
            noDataText: string;
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            tile: boolean;
            closeText: string;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            itemChildren: import('vuetify/lib/util').SelectItemKey;
            clearable: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            persistentPlaceholder: boolean;
            persistentCounter: boolean;
            chips: boolean;
            closableChips: boolean;
            openText: string;
            hideNoData: boolean;
            hideSelected: boolean;
            menuIcon: import('vuetify/lib/composables/icons').IconValue;
            openOnClear: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            prefix?: string | undefined;
            class?: any;
            theme?: string | undefined;
            placeholder?: string | undefined;
            counter?: string | number | boolean | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            valueComparator?: typeof import('vuetify/lib/util').deepEqual | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
            suffix?: string | undefined;
            counterValue?: number | ((value: any) => number) | undefined;
            modelModifiers?: Record<string, boolean> | undefined;
            listProps?: (Partial<{
                variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
                nav: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                tag: string | import('vuetify/lib/util').JSXComponent;
                lines: false | "one" | "two" | "three";
                mandatory: boolean;
                returnObject: boolean;
                selectStrategy: import('vuetify/lib/composables/nested/nested').SelectStrategyProp;
                density: import('vuetify/lib/composables/density').Density;
                rounded: string | number | boolean;
                tile: boolean;
                slim: boolean;
                activatable: boolean;
                selectable: boolean;
                openStrategy: import('vuetify/lib/composables/nested/nested').OpenStrategyProp;
                itemType: string;
            }> & Omit<{
                variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
                nav: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                tag: string | import('vuetify/lib/util').JSXComponent;
                lines: false | "one" | "two" | "three";
                mandatory: boolean;
                returnObject: boolean;
                selectStrategy: import('vuetify/lib/composables/nested/nested').SelectStrategyProp;
                density: import('vuetify/lib/composables/density').Density;
                tile: boolean;
                slim: boolean;
                activatable: boolean;
                selectable: boolean;
                openStrategy: import('vuetify/lib/composables/nested/nested').OpenStrategyProp;
                itemType: string;
                height?: string | number | undefined;
                width?: string | number | undefined;
                border?: string | number | boolean | undefined;
                color?: string | undefined;
                maxHeight?: string | number | undefined;
                maxWidth?: string | number | undefined;
                minHeight?: string | number | undefined;
                minWidth?: string | number | undefined;
                activated?: any;
                class?: any;
                theme?: string | undefined;
                elevation?: string | number | undefined;
                valueComparator?: typeof import('vuetify/lib/util').deepEqual | undefined;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                activeColor?: string | undefined;
                activeClass?: string | undefined;
                activeStrategy?: import('vuetify/lib/composables/nested/nested').ActiveStrategyProp | undefined;
                collapseIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                expandIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onUpdate:activated"?: ((value: unknown) => any) | undefined;
                "onClick:activate"?: ((value: {
                    id: unknown;
                    value: boolean;
                    path: unknown[];
                }) => any) | undefined;
            } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
                items?: readonly any[] | undefined;
                itemTitle?: import('vuetify/lib/util').SelectItemKey<any>;
                itemValue?: import('vuetify/lib/util').SelectItemKey<any>;
                itemChildren?: import('vuetify/lib/util').SelectItemKey<any>;
                itemProps?: import('vuetify/lib/util').SelectItemKey<any>;
                selected?: unknown;
                "onUpdate:selected"?: ((value: unknown) => void) | undefined;
                "onClick:open"?: (value: {
                    id: unknown;
                    value: boolean;
                    path: unknown[];
                }) => void;
                "onClick:select"?: (value: {
                    id: unknown;
                    value: boolean;
                    path: unknown[];
                }) => void;
                opened?: unknown;
                "onUpdate:opened"?: ((value: unknown) => void) | undefined;
            } & {
                $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
                    title?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot & {
                        item: any;
                    }) => import('vue').VNodeChild) | undefined;
                    append?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot & {
                        item: any;
                    }) => import('vue').VNodeChild) | undefined;
                    prepend?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot & {
                        item: any;
                    }) => import('vue').VNodeChild) | undefined;
                    subtitle?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot & {
                        item: any;
                    }) => import('vue').VNodeChild) | undefined;
                    default?: (() => import('vue').VNodeChild) | undefined;
                    item?: ((arg: {
                        props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                    }) => import('vue').VNodeChild) | undefined;
                    divider?: ((arg: {
                        props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                    }) => import('vue').VNodeChild) | undefined;
                    subheader?: ((arg: {
                        props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                    }) => import('vue').VNodeChild) | undefined;
                    header?: ((arg: {
                        props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                    }) => import('vue').VNodeChild) | undefined;
                };
                "v-slots"?: {
                    title?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot & {
                        item: any;
                    }) => import('vue').VNodeChild) | undefined;
                    append?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot & {
                        item: any;
                    }) => import('vue').VNodeChild) | undefined;
                    prepend?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot & {
                        item: any;
                    }) => import('vue').VNodeChild) | undefined;
                    subtitle?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot & {
                        item: any;
                    }) => import('vue').VNodeChild) | undefined;
                    default?: false | (() => import('vue').VNodeChild) | undefined;
                    item?: false | ((arg: {
                        props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                    }) => import('vue').VNodeChild) | undefined;
                    divider?: false | ((arg: {
                        props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                    }) => import('vue').VNodeChild) | undefined;
                    subheader?: false | ((arg: {
                        props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                    }) => import('vue').VNodeChild) | undefined;
                    header?: false | ((arg: {
                        props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                    }) => import('vue').VNodeChild) | undefined;
                } | undefined;
            } & {
                "v-slot:title"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot & {
                    item: any;
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot & {
                    item: any;
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot & {
                    item: any;
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:subtitle"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot & {
                    item: any;
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                "v-slot:item"?: false | ((arg: {
                    props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:divider"?: false | ((arg: {
                    props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:subheader"?: false | ((arg: {
                    props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:header"?: false | ((arg: {
                    props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                }) => import('vue').VNodeChild) | undefined;
            }) | undefined;
            menuProps?: (Partial<{
                location: import('vuetify/lib/util').Anchor | undefined;
                origin: "auto" | import('vuetify/lib/util').Anchor | "overlap";
                transition: string | boolean | (import('vue').TransitionProps & {
                    component?: import('vue').Component;
                }) | {
                    component: {
                        new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<{} & {
                            target?: HTMLElement | [x: number, y: number] | undefined;
                        } & {
                            $children?: import('vue').VNodeChild | {
                                default?: (() => import('vue').VNodeChild) | undefined;
                            } | (() => import('vue').VNodeChild);
                            "v-slots"?: {
                                default?: false | (() => import('vue').VNodeChild) | undefined;
                            } | undefined;
                        } & {
                            "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                        }, () => JSX.Element, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Record<string, any>, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {}, true, {}, import('vue').SlotsType<Partial<{
                            default: () => import('vue').VNode[];
                        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
                            P: {};
                            B: {};
                            D: {};
                            C: {};
                            M: {};
                            Defaults: {};
                        }, {} & {
                            target?: HTMLElement | [x: number, y: number] | undefined;
                        } & {
                            $children?: import('vue').VNodeChild | {
                                default?: (() => import('vue').VNodeChild) | undefined;
                            } | (() => import('vue').VNodeChild);
                            "v-slots"?: {
                                default?: false | (() => import('vue').VNodeChild) | undefined;
                            } | undefined;
                        } & {
                            "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                        }, () => JSX.Element, {}, {}, {}, {}>;
                        __isFragment?: never;
                        __isTeleport?: never;
                        __isSuspense?: never;
                    } & import('vue').ComponentOptionsBase<{} & {
                        target?: HTMLElement | [x: number, y: number] | undefined;
                    } & {
                        $children?: import('vue').VNodeChild | {
                            default?: (() => import('vue').VNodeChild) | undefined;
                        } | (() => import('vue').VNodeChild);
                        "v-slots"?: {
                            default?: false | (() => import('vue').VNodeChild) | undefined;
                        } | undefined;
                    } & {
                        "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                    }, () => JSX.Element, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import('vue').SlotsType<Partial<{
                        default: () => import('vue').VNode[];
                    }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vuetify/lib/util').FilterPropsOptions<{
                        target: PropType<HTMLElement | [x: number, y: number]>;
                    }, import('vue').ExtractPropTypes<{
                        target: PropType<HTMLElement | [x: number, y: number]>;
                    }>>;
                } | null;
                zIndex: string | number;
                style: import('vue').StyleValue;
                eager: boolean;
                disabled: boolean;
                persistent: boolean;
                modelValue: boolean;
                locationStrategy: "connected" | "static" | import('vuetify/lib/types').LocationStrategyFunction;
                scrollStrategy: "none" | "block" | "close" | import('vuetify/lib/types').ScrollStrategyFunction | "reposition";
                closeDelay: string | number;
                openDelay: string | number;
                activatorProps: Record<string, any>;
                openOnClick: boolean;
                openOnHover: boolean;
                openOnFocus: boolean;
                closeOnContentClick: boolean;
                closeOnBack: boolean;
                contained: boolean;
                noClickAnimation: boolean;
                scrim: string | boolean;
                submenu: boolean;
            }> & Omit<{
                location: import('vuetify/lib/util').Anchor | undefined;
                origin: "auto" | import('vuetify/lib/util').Anchor | "overlap";
                transition: string | boolean | (import('vue').TransitionProps & {
                    component?: import('vue').Component;
                }) | {
                    component: {
                        new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<{} & {
                            target?: HTMLElement | [x: number, y: number] | undefined;
                        } & {
                            $children?: import('vue').VNodeChild | {
                                default?: (() => import('vue').VNodeChild) | undefined;
                            } | (() => import('vue').VNodeChild);
                            "v-slots"?: {
                                default?: false | (() => import('vue').VNodeChild) | undefined;
                            } | undefined;
                        } & {
                            "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                        }, () => JSX.Element, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Record<string, any>, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {}, true, {}, import('vue').SlotsType<Partial<{
                            default: () => import('vue').VNode[];
                        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
                            P: {};
                            B: {};
                            D: {};
                            C: {};
                            M: {};
                            Defaults: {};
                        }, {} & {
                            target?: HTMLElement | [x: number, y: number] | undefined;
                        } & {
                            $children?: import('vue').VNodeChild | {
                                default?: (() => import('vue').VNodeChild) | undefined;
                            } | (() => import('vue').VNodeChild);
                            "v-slots"?: {
                                default?: false | (() => import('vue').VNodeChild) | undefined;
                            } | undefined;
                        } & {
                            "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                        }, () => JSX.Element, {}, {}, {}, {}>;
                        __isFragment?: never;
                        __isTeleport?: never;
                        __isSuspense?: never;
                    } & import('vue').ComponentOptionsBase<{} & {
                        target?: HTMLElement | [x: number, y: number] | undefined;
                    } & {
                        $children?: import('vue').VNodeChild | {
                            default?: (() => import('vue').VNodeChild) | undefined;
                        } | (() => import('vue').VNodeChild);
                        "v-slots"?: {
                            default?: false | (() => import('vue').VNodeChild) | undefined;
                        } | undefined;
                    } & {
                        "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                    }, () => JSX.Element, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import('vue').SlotsType<Partial<{
                        default: () => import('vue').VNode[];
                    }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vuetify/lib/util').FilterPropsOptions<{
                        target: PropType<HTMLElement | [x: number, y: number]>;
                    }, import('vue').ExtractPropTypes<{
                        target: PropType<HTMLElement | [x: number, y: number]>;
                    }>>;
                } | null;
                zIndex: string | number;
                style: import('vue').StyleValue;
                eager: boolean;
                disabled: boolean;
                persistent: boolean;
                modelValue: boolean;
                locationStrategy: "connected" | "static" | import('vuetify/lib/types').LocationStrategyFunction;
                scrollStrategy: "none" | "block" | "close" | import('vuetify/lib/types').ScrollStrategyFunction | "reposition";
                closeDelay: string | number;
                openDelay: string | number;
                activatorProps: Record<string, any>;
                openOnHover: boolean;
                closeOnContentClick: boolean;
                closeOnBack: boolean;
                contained: boolean;
                noClickAnimation: boolean;
                scrim: string | boolean;
                submenu: boolean;
                offset?: string | number | number[] | undefined;
                id?: string | undefined;
                height?: string | number | undefined;
                width?: string | number | undefined;
                maxHeight?: string | number | undefined;
                maxWidth?: string | number | undefined;
                minHeight?: string | number | undefined;
                minWidth?: string | number | undefined;
                opacity?: string | number | undefined;
                target?: Element | "cursor" | "parent" | (string & {}) | import('vue').ComponentPublicInstance | [x: number, y: number] | undefined;
                class?: any;
                theme?: string | undefined;
                activator?: Element | "parent" | (string & {}) | import('vue').ComponentPublicInstance | undefined;
                openOnClick?: boolean | undefined;
                openOnFocus?: boolean | undefined;
                contentClass?: any;
                contentProps?: any;
                attach?: string | boolean | Element | undefined;
                $children?: import('vue').VNodeChild | {
                    default?: ((arg: {
                        isActive: import('vue').Ref<boolean>;
                    }) => import('vue').VNodeChild) | undefined;
                    activator?: ((arg: {
                        isActive: boolean;
                        props: Record<string, any>;
                        targetRef: import('vuetify/lib/util').TemplateRef;
                    }) => import('vue').VNodeChild) | undefined;
                } | ((arg: {
                    isActive: import('vue').Ref<boolean>;
                }) => import('vue').VNodeChild);
                "v-slots"?: {
                    default?: false | ((arg: {
                        isActive: import('vue').Ref<boolean>;
                    }) => import('vue').VNodeChild) | undefined;
                    activator?: false | ((arg: {
                        isActive: boolean;
                        props: Record<string, any>;
                        targetRef: import('vuetify/lib/util').TemplateRef;
                    }) => import('vue').VNodeChild) | undefined;
                } | undefined;
                "v-slot:default"?: false | ((arg: {
                    isActive: import('vue').Ref<boolean>;
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:activator"?: false | ((arg: {
                    isActive: boolean;
                    props: Record<string, any>;
                    targetRef: import('vuetify/lib/util').TemplateRef;
                }) => import('vue').VNodeChild) | undefined;
                "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
            } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu">) | undefined;
            itemColor?: string | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
            "onUpdate:menu"?: ((ue: boolean) => any) | undefined;
        }, {
            isFocused: import('vue').ShallowRef<boolean, boolean>;
            menu: import('vue').WritableComputedRef<boolean, boolean>;
            select: (item: import('vuetify/lib/composables/list-items').ListItem, set?: boolean | null) => void;
        } & Omit<Omit<{
            $: import('vue').ComponentInternalInstance;
            $data: {};
            $props: Partial<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                type: string;
                error: boolean;
                active: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                autofocus: boolean;
                disabled: boolean;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
                persistentPlaceholder: boolean;
                persistentCounter: boolean;
            }> & Omit<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                type: string;
                error: boolean;
                active: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                autofocus: boolean;
                disabled: boolean;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
                persistentPlaceholder: boolean;
                persistentCounter: boolean;
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                prefix?: string | undefined;
                role?: string | undefined;
                class?: any;
                theme?: string | undefined;
                placeholder?: string | undefined;
                counter?: string | number | boolean | undefined;
                "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
                modelValue?: any;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
                suffix?: string | undefined;
                counterValue?: number | ((value: any) => number) | undefined;
                modelModifiers?: Record<string, boolean> | undefined;
                $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
                    message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                    clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        props: Record<string, any>;
                    }) => import('vue').VNodeChild) | undefined;
                    details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        label: string | undefined;
                        props: Record<string, any>;
                    }) => import('vue').VNodeChild) | undefined;
                    append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                    "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                    "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                    default?: (() => import('vue').VNodeChild) | undefined;
                    counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
                };
                "v-slots"?: {
                    message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                    clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        props: Record<string, any>;
                    }) => import('vue').VNodeChild) | undefined;
                    details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        label: string | undefined;
                        props: Record<string, any>;
                    }) => import('vue').VNodeChild) | undefined;
                    append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                    "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                    "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                    default?: false | (() => import('vue').VNodeChild) | undefined;
                    counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
                } | undefined;
                "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
                "onUpdate:modelValue"?: ((val: string) => any) | undefined;
                "onClick:control"?: ((e: MouseEvent) => any) | undefined;
                "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
            } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter">;
            $attrs: {
                [x: string]: unknown;
            };
            $refs: {
                [x: string]: unknown;
            };
            $slots: Readonly<{
                message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
                clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNode[]) | undefined;
                details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNode[]) | undefined;
                append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
                "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                default?: (() => import('vue').VNode[]) | undefined;
                counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNode[]) | undefined;
            }>;
            $root: import('vue').ComponentPublicInstance | null;
            $parent: import('vue').ComponentPublicInstance | null;
            $host: Element | null;
            $emit: ((event: "update:modelValue", val: string) => void) & ((event: "update:focused", focused: boolean) => void) & ((event: "click:control", e: MouseEvent) => void) & ((event: "mousedown:control", e: MouseEvent) => void);
            $el: any;
            $options: import('vue').ComponentOptionsBase<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                type: string;
                error: boolean;
                active: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                autofocus: boolean;
                disabled: boolean;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
                persistentPlaceholder: boolean;
                persistentCounter: boolean;
            } & {
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                prefix?: string | undefined;
                role?: string | undefined;
                class?: any;
                theme?: string | undefined;
                placeholder?: string | undefined;
                counter?: string | number | boolean | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                modelValue?: any;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
                suffix?: string | undefined;
                counterValue?: number | ((value: any) => number) | undefined;
                modelModifiers?: Record<string, boolean> | undefined;
            } & {
                $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
                    message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                    clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        props: Record<string, any>;
                    }) => import('vue').VNodeChild) | undefined;
                    details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        label: string | undefined;
                        props: Record<string, any>;
                    }) => import('vue').VNodeChild) | undefined;
                    append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                    "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                    "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                    default?: (() => import('vue').VNodeChild) | undefined;
                    counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
                };
                "v-slots"?: {
                    message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                    clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        props: Record<string, any>;
                    }) => import('vue').VNodeChild) | undefined;
                    details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        label: string | undefined;
                        props: Record<string, any>;
                    }) => import('vue').VNodeChild) | undefined;
                    append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                    "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                    "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                    default?: false | (() => import('vue').VNodeChild) | undefined;
                    counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
                } | undefined;
            } & {
                "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
            } & {
                "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
                "onUpdate:modelValue"?: ((val: string) => any) | undefined;
                "onClick:control"?: ((e: MouseEvent) => any) | undefined;
                "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
            }, HTMLInputElement & Omit<Omit<{
                $: import('vue').ComponentInternalInstance;
                $data: {};
                $props: Partial<{
                    error: boolean;
                    direction: "horizontal" | "vertical";
                    style: import('vue').StyleValue;
                    disabled: boolean | null;
                    readonly: boolean | null;
                    messages: string | readonly string[];
                    rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                    focused: boolean;
                    errorMessages: string | readonly string[] | null;
                    maxErrors: string | number;
                    density: import('vuetify/lib/composables/density').Density;
                    centerAffix: boolean;
                    glow: boolean;
                    hideSpinButtons: boolean;
                    persistentHint: boolean;
                }> & Omit<{
                    error: boolean;
                    direction: "horizontal" | "vertical";
                    style: import('vue').StyleValue;
                    disabled: boolean | null;
                    readonly: boolean | null;
                    messages: string | readonly string[];
                    rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                    focused: boolean;
                    errorMessages: string | readonly string[] | null;
                    maxErrors: string | number;
                    density: import('vuetify/lib/composables/density').Density;
                    centerAffix: boolean;
                    glow: boolean;
                    hideSpinButtons: boolean;
                    persistentHint: boolean;
                    name?: string | undefined;
                    id?: string | undefined;
                    width?: string | number | undefined;
                    color?: string | undefined;
                    maxWidth?: string | number | undefined;
                    minWidth?: string | number | undefined;
                    label?: string | undefined;
                    class?: any;
                    theme?: string | undefined;
                    "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                    validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                    validationValue?: any;
                    baseColor?: string | undefined;
                    prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                    iconColor?: string | boolean | undefined;
                    hint?: string | undefined;
                    hideDetails?: boolean | "auto" | undefined;
                } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
                $attrs: {
                    [x: string]: unknown;
                };
                $refs: {
                    [x: string]: unknown;
                };
                $slots: Readonly<{
                    default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                    prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                    append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                    details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                    message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
                }>;
                $root: import('vue').ComponentPublicInstance | null;
                $parent: import('vue').ComponentPublicInstance | null;
                $host: Element | null;
                $emit: (event: string, ...args: any[]) => void;
                $el: any;
                $options: import('vue').ComponentOptionsBase<{
                    error: boolean;
                    direction: "horizontal" | "vertical";
                    style: import('vue').StyleValue;
                    disabled: boolean | null;
                    readonly: boolean | null;
                    messages: string | readonly string[];
                    rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                    focused: boolean;
                    errorMessages: string | readonly string[] | null;
                    maxErrors: string | number;
                    density: import('vuetify/lib/composables/density').Density;
                    centerAffix: boolean;
                    glow: boolean;
                    hideSpinButtons: boolean;
                    persistentHint: boolean;
                } & {
                    name?: string | undefined;
                    id?: string | undefined;
                    width?: string | number | undefined;
                    color?: string | undefined;
                    maxWidth?: string | number | undefined;
                    minWidth?: string | number | undefined;
                    label?: string | undefined;
                    class?: any;
                    theme?: string | undefined;
                    "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                    validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                    validationValue?: any;
                    baseColor?: string | undefined;
                    prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                    iconColor?: string | boolean | undefined;
                    hint?: string | undefined;
                    hideDetails?: boolean | "auto" | undefined;
                } & {}, {
                    reset: () => Promise<void>;
                    resetValidation: () => Promise<void>;
                    validate: (silent?: boolean) => Promise<string[]>;
                    isValid: import('vue').ComputedRef<boolean | null>;
                    errorMessages: import('vue').ComputedRef<string[]>;
                }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                    "update:modelValue": (value: any) => true;
                }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
                    error: boolean;
                    direction: "horizontal" | "vertical";
                    style: import('vue').StyleValue;
                    disabled: boolean | null;
                    readonly: boolean | null;
                    messages: string | readonly string[];
                    rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                    focused: boolean;
                    errorMessages: string | readonly string[] | null;
                    maxErrors: string | number;
                    density: import('vuetify/lib/composables/density').Density;
                    centerAffix: boolean;
                    glow: boolean;
                    hideSpinButtons: boolean;
                    persistentHint: boolean;
                }, {}, string, import('vue').SlotsType<Partial<{
                    default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                    prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                    append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                    details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                    message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
                }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                    beforeCreate?: (() => void) | (() => void)[];
                    created?: (() => void) | (() => void)[];
                    beforeMount?: (() => void) | (() => void)[];
                    mounted?: (() => void) | (() => void)[];
                    beforeUpdate?: (() => void) | (() => void)[];
                    updated?: (() => void) | (() => void)[];
                    activated?: (() => void) | (() => void)[];
                    deactivated?: (() => void) | (() => void)[];
                    beforeDestroy?: (() => void) | (() => void)[];
                    beforeUnmount?: (() => void) | (() => void)[];
                    destroyed?: (() => void) | (() => void)[];
                    unmounted?: (() => void) | (() => void)[];
                    renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                    renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                    errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
                };
                $forceUpdate: () => void;
                $nextTick: typeof nextTick;
                $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
            } & Readonly<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            }> & Omit<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            } & {
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                baseColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
            } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import('vue').ShallowUnwrapRef<{
                reset: () => Promise<void>;
                resetValidation: () => Promise<void>;
                validate: (silent?: boolean) => Promise<string[]>;
                isValid: import('vue').ComputedRef<boolean | null>;
                errorMessages: import('vue').ComputedRef<string[]>;
            }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
                modelValue?: unknown;
                "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
            }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
                $: import('vue').ComponentInternalInstance;
                $data: {};
                $props: Partial<{
                    flat: boolean;
                    reverse: boolean;
                    variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                    error: boolean;
                    active: boolean;
                    style: import('vue').StyleValue;
                    disabled: boolean;
                    focused: boolean;
                    rounded: string | number | boolean;
                    tile: boolean;
                    clearIcon: import('vuetify/lib/composables/icons').IconValue;
                    centerAffix: boolean;
                    glow: boolean;
                    clearable: boolean;
                    dirty: boolean;
                    persistentClear: boolean;
                    singleLine: boolean;
                }> & Omit<{
                    flat: boolean;
                    reverse: boolean;
                    variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                    error: boolean;
                    active: boolean;
                    style: import('vue').StyleValue;
                    disabled: boolean;
                    focused: boolean;
                    tile: boolean;
                    clearIcon: import('vuetify/lib/composables/icons').IconValue;
                    glow: boolean;
                    clearable: boolean;
                    dirty: boolean;
                    persistentClear: boolean;
                    singleLine: boolean;
                    id?: string | undefined;
                    color?: string | undefined;
                    loading?: string | boolean | undefined;
                    label?: string | undefined;
                    class?: any;
                    theme?: string | undefined;
                    "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
                    rounded?: string | number | boolean | undefined;
                    baseColor?: string | undefined;
                    bgColor?: string | undefined;
                    appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                    centerAffix?: boolean | undefined;
                    iconColor?: string | boolean | undefined;
                } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
                $attrs: {
                    [x: string]: unknown;
                };
                $refs: {
                    [x: string]: unknown;
                };
                $slots: Readonly<{
                    clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        props: Record<string, any>;
                    }) => import('vue').VNode[]) | undefined;
                    "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                    "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                    label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        label: string | undefined;
                        props: Record<string, any>;
                    }) => import('vue').VNode[]) | undefined;
                    loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
                    default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
                }>;
                $root: import('vue').ComponentPublicInstance | null;
                $parent: import('vue').ComponentPublicInstance | null;
                $host: Element | null;
                $emit: (event: "update:focused", focused: boolean) => void;
                $el: any;
                $options: import('vue').ComponentOptionsBase<{
                    flat: boolean;
                    reverse: boolean;
                    variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                    error: boolean;
                    active: boolean;
                    style: import('vue').StyleValue;
                    disabled: boolean;
                    focused: boolean;
                    tile: boolean;
                    clearIcon: import('vuetify/lib/composables/icons').IconValue;
                    glow: boolean;
                    clearable: boolean;
                    dirty: boolean;
                    persistentClear: boolean;
                    singleLine: boolean;
                } & {
                    id?: string | undefined;
                    color?: string | undefined;
                    loading?: string | boolean | undefined;
                    label?: string | undefined;
                    class?: any;
                    theme?: string | undefined;
                    "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                    rounded?: string | number | boolean | undefined;
                    baseColor?: string | undefined;
                    bgColor?: string | undefined;
                    appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                    centerAffix?: boolean | undefined;
                    iconColor?: string | boolean | undefined;
                } & {
                    "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
                }, {
                    controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                    fieldIconColor: import('vue').ComputedRef<string | undefined>;
                }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                    "update:focused": (focused: boolean) => true;
                    "update:modelValue": (value: any) => true;
                }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
                    flat: boolean;
                    reverse: boolean;
                    variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                    error: boolean;
                    active: boolean;
                    style: import('vue').StyleValue;
                    disabled: boolean;
                    focused: boolean;
                    rounded: string | number | boolean;
                    tile: boolean;
                    clearIcon: import('vuetify/lib/composables/icons').IconValue;
                    centerAffix: boolean;
                    glow: boolean;
                    clearable: boolean;
                    dirty: boolean;
                    persistentClear: boolean;
                    singleLine: boolean;
                }, {}, string, import('vue').SlotsType<Partial<{
                    clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        props: Record<string, any>;
                    }) => import('vue').VNode[];
                    "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                    "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                    label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        label: string | undefined;
                        props: Record<string, any>;
                    }) => import('vue').VNode[];
                    loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
                    default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
                }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                    beforeCreate?: (() => void) | (() => void)[];
                    created?: (() => void) | (() => void)[];
                    beforeMount?: (() => void) | (() => void)[];
                    mounted?: (() => void) | (() => void)[];
                    beforeUpdate?: (() => void) | (() => void)[];
                    updated?: (() => void) | (() => void)[];
                    activated?: (() => void) | (() => void)[];
                    deactivated?: (() => void) | (() => void)[];
                    beforeDestroy?: (() => void) | (() => void)[];
                    beforeUnmount?: (() => void) | (() => void)[];
                    destroyed?: (() => void) | (() => void)[];
                    unmounted?: (() => void) | (() => void)[];
                    renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                    renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                    errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
                };
                $forceUpdate: () => void;
                $nextTick: typeof nextTick;
                $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
            } & Readonly<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            }> & Omit<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            } & {
                id?: string | undefined;
                color?: string | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
            } & {
                "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
            }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
                controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                fieldIconColor: import('vue').ComputedRef<string | undefined>;
            }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
                modelValue?: unknown;
                "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
            }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
                _allExposed: {
                    reset: () => Promise<void>;
                    resetValidation: () => Promise<void>;
                    validate: (silent?: boolean) => Promise<string[]>;
                    isValid: import('vue').ComputedRef<boolean | null>;
                    errorMessages: import('vue').ComputedRef<string[]>;
                } | {
                    controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                    fieldIconColor: import('vue').ComputedRef<string | undefined>;
                } | {};
            }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
                "click:control": (e: MouseEvent) => true;
                "mousedown:control": (e: MouseEvent) => true;
                "update:focused": (focused: boolean) => true;
                "update:modelValue": (val: string) => true;
            }, string, {
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                type: string;
                error: boolean;
                active: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                autofocus: boolean;
                disabled: boolean;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
                persistentPlaceholder: boolean;
                persistentCounter: boolean;
            }, {}, string, import('vue').SlotsType<Partial<{
                message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
                clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNode[];
                details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNode[];
                append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
                "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                default: () => import('vue').VNode[];
                counter: (arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNode[];
            }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                beforeCreate?: (() => void) | (() => void)[];
                created?: (() => void) | (() => void)[];
                beforeMount?: (() => void) | (() => void)[];
                mounted?: (() => void) | (() => void)[];
                beforeUpdate?: (() => void) | (() => void)[];
                updated?: (() => void) | (() => void)[];
                activated?: (() => void) | (() => void)[];
                deactivated?: (() => void) | (() => void)[];
                beforeDestroy?: (() => void) | (() => void)[];
                beforeUnmount?: (() => void) | (() => void)[];
                destroyed?: (() => void) | (() => void)[];
                unmounted?: (() => void) | (() => void)[];
                renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
            };
            $forceUpdate: () => void;
            $nextTick: typeof nextTick;
            $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
        } & Readonly<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            type: string;
            error: boolean;
            active: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            autofocus: boolean;
            disabled: boolean;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            persistentPlaceholder: boolean;
            persistentCounter: boolean;
        }> & Omit<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            type: string;
            error: boolean;
            active: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            autofocus: boolean;
            disabled: boolean;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            persistentPlaceholder: boolean;
            persistentCounter: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            prefix?: string | undefined;
            role?: string | undefined;
            class?: any;
            theme?: string | undefined;
            placeholder?: string | undefined;
            counter?: string | number | boolean | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            modelValue?: any;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
            suffix?: string | undefined;
            counterValue?: number | ((value: any) => number) | undefined;
            modelModifiers?: Record<string, boolean> | undefined;
        } & {
            $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
                message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                default?: (() => import('vue').VNodeChild) | undefined;
                counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
            };
            "v-slots"?: {
                message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                default?: false | (() => import('vue').VNodeChild) | undefined;
                counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
            } | undefined;
        } & {
            "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
            "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
            "onUpdate:modelValue"?: ((val: string) => any) | undefined;
            "onClick:control"?: ((e: MouseEvent) => any) | undefined;
            "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
        }, "normalize" | "flat" | "reverse" | "variant" | "name" | "max" | "required" | "type" | "error" | "id" | "matches" | "height" | "width" | "active" | "remove" | "min" | "direction" | "translate" | "contains" | "value" | "hidden" | "form" | "select" | "slot" | "style" | "title" | "dir" | "animate" | "pattern" | "blur" | "click" | "focus" | "reset" | "scroll" | "autocomplete" | "checkValidity" | "reportValidity" | "addEventListener" | "removeEventListener" | "accessKey" | "accessKeyLabel" | "autocapitalize" | "draggable" | "inert" | "innerText" | "lang" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "spellcheck" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "innerHTML" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "part" | "prefix" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttribute" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "_clickOutside" | "_onResize" | "_ripple" | "_observe" | "_mutate" | "_onScroll" | "_touchHandlers" | "_transitionInitialStyles" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "textContent" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColIndexText" | "ariaColSpan" | "ariaCurrent" | "ariaDescription" | "ariaDisabled" | "ariaExpanded" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabel" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "role" | "getAnimations" | "after" | "before" | "replaceWith" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "children" | "firstElementChild" | "lastElementChild" | "append" | "prepend" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "enterKeyHint" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclick" | "onclose" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onkeydown" | "onkeypress" | "onkeyup" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "autofocus" | "dataset" | "nonce" | "tabIndex" | "disabled" | "labels" | "multiple" | "size" | "validationMessage" | "validity" | "willValidate" | "setCustomValidity" | "showPicker" | "readonly" | "maxLength" | "list" | "accept" | "readOnly" | "_" | "alt" | "step" | "placeholder" | "src" | "capture" | "checked" | "indeterminate" | "align" | "messages" | "rules" | "minLength" | "isValid" | "focused" | "errorMessages" | "maxErrors" | "validate" | "resetValidation" | "density" | "rounded" | "tile" | "_allExposed" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor" | "persistentPlaceholder" | "persistentCounter" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "selectionDirection" | "selectionEnd" | "selectionStart" | "useMap" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "setRangeText" | "setSelectionRange" | "stepDown" | "stepUp" | "popoverTargetAction" | "popoverTargetElement"> & import('vue').ShallowUnwrapRef<HTMLInputElement & Omit<Omit<{
            $: import('vue').ComponentInternalInstance;
            $data: {};
            $props: Partial<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            }> & Omit<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                baseColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
            } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
            $attrs: {
                [x: string]: unknown;
            };
            $refs: {
                [x: string]: unknown;
            };
            $slots: Readonly<{
                default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
            }>;
            $root: import('vue').ComponentPublicInstance | null;
            $parent: import('vue').ComponentPublicInstance | null;
            $host: Element | null;
            $emit: (event: string, ...args: any[]) => void;
            $el: any;
            $options: import('vue').ComponentOptionsBase<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            } & {
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                baseColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
            } & {}, {
                reset: () => Promise<void>;
                resetValidation: () => Promise<void>;
                validate: (silent?: boolean) => Promise<string[]>;
                isValid: import('vue').ComputedRef<boolean | null>;
                errorMessages: import('vue').ComputedRef<string[]>;
            }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                "update:modelValue": (value: any) => true;
            }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            }, {}, string, import('vue').SlotsType<Partial<{
                default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
            }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                beforeCreate?: (() => void) | (() => void)[];
                created?: (() => void) | (() => void)[];
                beforeMount?: (() => void) | (() => void)[];
                mounted?: (() => void) | (() => void)[];
                beforeUpdate?: (() => void) | (() => void)[];
                updated?: (() => void) | (() => void)[];
                activated?: (() => void) | (() => void)[];
                deactivated?: (() => void) | (() => void)[];
                beforeDestroy?: (() => void) | (() => void)[];
                beforeUnmount?: (() => void) | (() => void)[];
                destroyed?: (() => void) | (() => void)[];
                unmounted?: (() => void) | (() => void)[];
                renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
            };
            $forceUpdate: () => void;
            $nextTick: typeof nextTick;
            $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
        } & Readonly<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }> & Omit<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import('vue').ShallowUnwrapRef<{
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
            modelValue?: unknown;
            "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
        }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
            $: import('vue').ComponentInternalInstance;
            $data: {};
            $props: Partial<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            }> & Omit<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
                id?: string | undefined;
                color?: string | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
            } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
            $attrs: {
                [x: string]: unknown;
            };
            $refs: {
                [x: string]: unknown;
            };
            $slots: Readonly<{
                clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNode[]) | undefined;
                "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNode[]) | undefined;
                loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
                default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
            }>;
            $root: import('vue').ComponentPublicInstance | null;
            $parent: import('vue').ComponentPublicInstance | null;
            $host: Element | null;
            $emit: (event: "update:focused", focused: boolean) => void;
            $el: any;
            $options: import('vue').ComponentOptionsBase<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            } & {
                id?: string | undefined;
                color?: string | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
            } & {
                "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
            }, {
                controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                fieldIconColor: import('vue').ComputedRef<string | undefined>;
            }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                "update:focused": (focused: boolean) => true;
                "update:modelValue": (value: any) => true;
            }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            }, {}, string, import('vue').SlotsType<Partial<{
                clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNode[];
                "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNode[];
                loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
                default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
            }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                beforeCreate?: (() => void) | (() => void)[];
                created?: (() => void) | (() => void)[];
                beforeMount?: (() => void) | (() => void)[];
                mounted?: (() => void) | (() => void)[];
                beforeUpdate?: (() => void) | (() => void)[];
                updated?: (() => void) | (() => void)[];
                activated?: (() => void) | (() => void)[];
                deactivated?: (() => void) | (() => void)[];
                beforeDestroy?: (() => void) | (() => void)[];
                beforeUnmount?: (() => void) | (() => void)[];
                destroyed?: (() => void) | (() => void)[];
                unmounted?: (() => void) | (() => void)[];
                renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
            };
            $forceUpdate: () => void;
            $nextTick: typeof nextTick;
            $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
        } & Readonly<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }> & Omit<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        } & {
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
            modelValue?: unknown;
            "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
        }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
            _allExposed: {
                reset: () => Promise<void>;
                resetValidation: () => Promise<void>;
                validate: (silent?: boolean) => Promise<string[]>;
                isValid: import('vue').ComputedRef<boolean | null>;
                errorMessages: import('vue').ComputedRef<string[]>;
            } | {
                controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                fieldIconColor: import('vue').ComputedRef<string | undefined>;
            } | {};
        }> & {} & import('vue').ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
            _allExposed: (HTMLInputElement & Omit<Omit<{
                $: import('vue').ComponentInternalInstance;
                $data: {};
                $props: Partial<{
                    error: boolean;
                    direction: "horizontal" | "vertical";
                    style: import('vue').StyleValue;
                    disabled: boolean | null;
                    readonly: boolean | null;
                    messages: string | readonly string[];
                    rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                    focused: boolean;
                    errorMessages: string | readonly string[] | null;
                    maxErrors: string | number;
                    density: import('vuetify/lib/composables/density').Density;
                    centerAffix: boolean;
                    glow: boolean;
                    hideSpinButtons: boolean;
                    persistentHint: boolean;
                }> & Omit<{
                    error: boolean;
                    direction: "horizontal" | "vertical";
                    style: import('vue').StyleValue;
                    disabled: boolean | null;
                    readonly: boolean | null;
                    messages: string | readonly string[];
                    rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                    focused: boolean;
                    errorMessages: string | readonly string[] | null;
                    maxErrors: string | number;
                    density: import('vuetify/lib/composables/density').Density;
                    centerAffix: boolean;
                    glow: boolean;
                    hideSpinButtons: boolean;
                    persistentHint: boolean;
                    name?: string | undefined;
                    id?: string | undefined;
                    width?: string | number | undefined;
                    color?: string | undefined;
                    maxWidth?: string | number | undefined;
                    minWidth?: string | number | undefined;
                    label?: string | undefined;
                    class?: any;
                    theme?: string | undefined;
                    "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                    validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                    validationValue?: any;
                    baseColor?: string | undefined;
                    prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                    iconColor?: string | boolean | undefined;
                    hint?: string | undefined;
                    hideDetails?: boolean | "auto" | undefined;
                } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
                $attrs: {
                    [x: string]: unknown;
                };
                $refs: {
                    [x: string]: unknown;
                };
                $slots: Readonly<{
                    default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                    prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                    append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                    details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                    message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
                }>;
                $root: import('vue').ComponentPublicInstance | null;
                $parent: import('vue').ComponentPublicInstance | null;
                $host: Element | null;
                $emit: (event: string, ...args: any[]) => void;
                $el: any;
                $options: import('vue').ComponentOptionsBase<{
                    error: boolean;
                    direction: "horizontal" | "vertical";
                    style: import('vue').StyleValue;
                    disabled: boolean | null;
                    readonly: boolean | null;
                    messages: string | readonly string[];
                    rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                    focused: boolean;
                    errorMessages: string | readonly string[] | null;
                    maxErrors: string | number;
                    density: import('vuetify/lib/composables/density').Density;
                    centerAffix: boolean;
                    glow: boolean;
                    hideSpinButtons: boolean;
                    persistentHint: boolean;
                } & {
                    name?: string | undefined;
                    id?: string | undefined;
                    width?: string | number | undefined;
                    color?: string | undefined;
                    maxWidth?: string | number | undefined;
                    minWidth?: string | number | undefined;
                    label?: string | undefined;
                    class?: any;
                    theme?: string | undefined;
                    "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                    validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                    validationValue?: any;
                    baseColor?: string | undefined;
                    prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                    iconColor?: string | boolean | undefined;
                    hint?: string | undefined;
                    hideDetails?: boolean | "auto" | undefined;
                } & {}, {
                    reset: () => Promise<void>;
                    resetValidation: () => Promise<void>;
                    validate: (silent?: boolean) => Promise<string[]>;
                    isValid: import('vue').ComputedRef<boolean | null>;
                    errorMessages: import('vue').ComputedRef<string[]>;
                }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                    "update:modelValue": (value: any) => true;
                }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
                    error: boolean;
                    direction: "horizontal" | "vertical";
                    style: import('vue').StyleValue;
                    disabled: boolean | null;
                    readonly: boolean | null;
                    messages: string | readonly string[];
                    rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                    focused: boolean;
                    errorMessages: string | readonly string[] | null;
                    maxErrors: string | number;
                    density: import('vuetify/lib/composables/density').Density;
                    centerAffix: boolean;
                    glow: boolean;
                    hideSpinButtons: boolean;
                    persistentHint: boolean;
                }, {}, string, import('vue').SlotsType<Partial<{
                    default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                    prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                    append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                    details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                    message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
                }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                    beforeCreate?: (() => void) | (() => void)[];
                    created?: (() => void) | (() => void)[];
                    beforeMount?: (() => void) | (() => void)[];
                    mounted?: (() => void) | (() => void)[];
                    beforeUpdate?: (() => void) | (() => void)[];
                    updated?: (() => void) | (() => void)[];
                    activated?: (() => void) | (() => void)[];
                    deactivated?: (() => void) | (() => void)[];
                    beforeDestroy?: (() => void) | (() => void)[];
                    beforeUnmount?: (() => void) | (() => void)[];
                    destroyed?: (() => void) | (() => void)[];
                    unmounted?: (() => void) | (() => void)[];
                    renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                    renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                    errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
                };
                $forceUpdate: () => void;
                $nextTick: typeof nextTick;
                $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
            } & Readonly<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            }> & Omit<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            } & {
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                baseColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
            } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import('vue').ShallowUnwrapRef<{
                reset: () => Promise<void>;
                resetValidation: () => Promise<void>;
                validate: (silent?: boolean) => Promise<string[]>;
                isValid: import('vue').ComputedRef<boolean | null>;
                errorMessages: import('vue').ComputedRef<string[]>;
            }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
                modelValue?: unknown;
                "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
            }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
                $: import('vue').ComponentInternalInstance;
                $data: {};
                $props: Partial<{
                    flat: boolean;
                    reverse: boolean;
                    variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                    error: boolean;
                    active: boolean;
                    style: import('vue').StyleValue;
                    disabled: boolean;
                    focused: boolean;
                    rounded: string | number | boolean;
                    tile: boolean;
                    clearIcon: import('vuetify/lib/composables/icons').IconValue;
                    centerAffix: boolean;
                    glow: boolean;
                    clearable: boolean;
                    dirty: boolean;
                    persistentClear: boolean;
                    singleLine: boolean;
                }> & Omit<{
                    flat: boolean;
                    reverse: boolean;
                    variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                    error: boolean;
                    active: boolean;
                    style: import('vue').StyleValue;
                    disabled: boolean;
                    focused: boolean;
                    tile: boolean;
                    clearIcon: import('vuetify/lib/composables/icons').IconValue;
                    glow: boolean;
                    clearable: boolean;
                    dirty: boolean;
                    persistentClear: boolean;
                    singleLine: boolean;
                    id?: string | undefined;
                    color?: string | undefined;
                    loading?: string | boolean | undefined;
                    label?: string | undefined;
                    class?: any;
                    theme?: string | undefined;
                    "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
                    rounded?: string | number | boolean | undefined;
                    baseColor?: string | undefined;
                    bgColor?: string | undefined;
                    appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                    centerAffix?: boolean | undefined;
                    iconColor?: string | boolean | undefined;
                } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
                $attrs: {
                    [x: string]: unknown;
                };
                $refs: {
                    [x: string]: unknown;
                };
                $slots: Readonly<{
                    clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        props: Record<string, any>;
                    }) => import('vue').VNode[]) | undefined;
                    "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                    "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                    label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        label: string | undefined;
                        props: Record<string, any>;
                    }) => import('vue').VNode[]) | undefined;
                    loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
                    default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
                }>;
                $root: import('vue').ComponentPublicInstance | null;
                $parent: import('vue').ComponentPublicInstance | null;
                $host: Element | null;
                $emit: (event: "update:focused", focused: boolean) => void;
                $el: any;
                $options: import('vue').ComponentOptionsBase<{
                    flat: boolean;
                    reverse: boolean;
                    variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                    error: boolean;
                    active: boolean;
                    style: import('vue').StyleValue;
                    disabled: boolean;
                    focused: boolean;
                    tile: boolean;
                    clearIcon: import('vuetify/lib/composables/icons').IconValue;
                    glow: boolean;
                    clearable: boolean;
                    dirty: boolean;
                    persistentClear: boolean;
                    singleLine: boolean;
                } & {
                    id?: string | undefined;
                    color?: string | undefined;
                    loading?: string | boolean | undefined;
                    label?: string | undefined;
                    class?: any;
                    theme?: string | undefined;
                    "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                    rounded?: string | number | boolean | undefined;
                    baseColor?: string | undefined;
                    bgColor?: string | undefined;
                    appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                    centerAffix?: boolean | undefined;
                    iconColor?: string | boolean | undefined;
                } & {
                    "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
                }, {
                    controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                    fieldIconColor: import('vue').ComputedRef<string | undefined>;
                }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                    "update:focused": (focused: boolean) => true;
                    "update:modelValue": (value: any) => true;
                }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
                    flat: boolean;
                    reverse: boolean;
                    variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                    error: boolean;
                    active: boolean;
                    style: import('vue').StyleValue;
                    disabled: boolean;
                    focused: boolean;
                    rounded: string | number | boolean;
                    tile: boolean;
                    clearIcon: import('vuetify/lib/composables/icons').IconValue;
                    centerAffix: boolean;
                    glow: boolean;
                    clearable: boolean;
                    dirty: boolean;
                    persistentClear: boolean;
                    singleLine: boolean;
                }, {}, string, import('vue').SlotsType<Partial<{
                    clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        props: Record<string, any>;
                    }) => import('vue').VNode[];
                    "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                    "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                    label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        label: string | undefined;
                        props: Record<string, any>;
                    }) => import('vue').VNode[];
                    loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
                    default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
                }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                    beforeCreate?: (() => void) | (() => void)[];
                    created?: (() => void) | (() => void)[];
                    beforeMount?: (() => void) | (() => void)[];
                    mounted?: (() => void) | (() => void)[];
                    beforeUpdate?: (() => void) | (() => void)[];
                    updated?: (() => void) | (() => void)[];
                    activated?: (() => void) | (() => void)[];
                    deactivated?: (() => void) | (() => void)[];
                    beforeDestroy?: (() => void) | (() => void)[];
                    beforeUnmount?: (() => void) | (() => void)[];
                    destroyed?: (() => void) | (() => void)[];
                    unmounted?: (() => void) | (() => void)[];
                    renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                    renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                    errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
                };
                $forceUpdate: () => void;
                $nextTick: typeof nextTick;
                $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
            } & Readonly<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            }> & Omit<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            } & {
                id?: string | undefined;
                color?: string | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
            } & {
                "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
            }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
                controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                fieldIconColor: import('vue').ComputedRef<string | undefined>;
            }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
                modelValue?: unknown;
                "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
            }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
                _allExposed: {
                    reset: () => Promise<void>;
                    resetValidation: () => Promise<void>;
                    validate: (silent?: boolean) => Promise<string[]>;
                    isValid: import('vue').ComputedRef<boolean | null>;
                    errorMessages: import('vue').ComputedRef<string[]>;
                } | {
                    controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                    fieldIconColor: import('vue').ComputedRef<string | undefined>;
                } | {};
            }) | {
                isFocused: import('vue').ShallowRef<boolean, boolean>;
                menu: import('vue').WritableComputedRef<boolean, boolean>;
                select: (item: import('vuetify/lib/composables/list-items').ListItem, set?: boolean | null) => void;
            };
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:focused": (focused: boolean) => true;
            "update:modelValue": (value: any) => true;
            "update:menu": (ue: boolean) => true;
        }, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            type: string;
            error: boolean;
            active: boolean;
            direction: "horizontal" | "vertical";
            transition: string | boolean | (import('vue').TransitionProps & {
                component?: import('vue').Component;
            }) | {
                component: import('vue').Component;
            } | null;
            menu: boolean;
            style: import('vue').StyleValue;
            role: string;
            autofocus: boolean;
            eager: boolean;
            disabled: boolean;
            readonly: boolean | null;
            messages: string | readonly string[];
            noDataText: string;
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            rounded: string | number | boolean;
            tile: boolean;
            closeText: string;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            itemChildren: import('vuetify/lib/util').SelectItemKey;
            clearable: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            persistentPlaceholder: boolean;
            persistentCounter: boolean;
            chips: boolean;
            closableChips: boolean;
            openText: string;
            hideNoData: boolean;
            hideSelected: boolean;
            menuIcon: import('vuetify/lib/composables/icons').IconValue;
            openOnClear: boolean;
        }, true, {}, import('vue').SlotsType<Partial<{
            message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
            clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[];
            details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[];
            append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
            "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            item: (arg: {
                item: import('vuetify/lib/composables/list-items').ListItem<unknown>;
                index: number;
                props: Record<string, unknown>;
            }) => import('vue').VNode[];
            chip: (arg: {
                item: import('vuetify/lib/composables/list-items').ListItem<unknown>;
                index: number;
                props: Record<string, unknown>;
            }) => import('vue').VNode[];
            selection: (arg: {
                item: import('vuetify/lib/composables/list-items').ListItem<unknown>;
                index: number;
            }) => import('vue').VNode[];
            "prepend-item": () => import('vue').VNode[];
            "append-item": () => import('vue').VNode[];
            "no-data": () => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
            P: {};
            B: {};
            D: {};
            C: {};
            M: {};
            Defaults: {};
        }, {
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            type: string;
            error: boolean;
            active: boolean;
            direction: "horizontal" | "vertical";
            transition: string | boolean | (import('vue').TransitionProps & {
                component?: import('vue').Component;
            }) | {
                component: import('vue').Component;
            } | null;
            menu: boolean;
            style: import('vue').StyleValue;
            role: string;
            autofocus: boolean;
            eager: boolean;
            disabled: boolean;
            readonly: boolean | null;
            messages: string | readonly string[];
            noDataText: string;
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            tile: boolean;
            closeText: string;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            itemChildren: import('vuetify/lib/util').SelectItemKey;
            clearable: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            persistentPlaceholder: boolean;
            persistentCounter: boolean;
            chips: boolean;
            closableChips: boolean;
            openText: string;
            hideNoData: boolean;
            hideSelected: boolean;
            menuIcon: import('vuetify/lib/composables/icons').IconValue;
            openOnClear: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            prefix?: string | undefined;
            class?: any;
            theme?: string | undefined;
            placeholder?: string | undefined;
            counter?: string | number | boolean | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            valueComparator?: typeof import('vuetify/lib/util').deepEqual | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
            suffix?: string | undefined;
            counterValue?: number | ((value: any) => number) | undefined;
            modelModifiers?: Record<string, boolean> | undefined;
            listProps?: (Partial<{
                variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
                nav: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                tag: string | import('vuetify/lib/util').JSXComponent;
                lines: false | "one" | "two" | "three";
                mandatory: boolean;
                returnObject: boolean;
                selectStrategy: import('vuetify/lib/composables/nested/nested').SelectStrategyProp;
                density: import('vuetify/lib/composables/density').Density;
                rounded: string | number | boolean;
                tile: boolean;
                slim: boolean;
                activatable: boolean;
                selectable: boolean;
                openStrategy: import('vuetify/lib/composables/nested/nested').OpenStrategyProp;
                itemType: string;
            }> & Omit<{
                variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
                nav: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                tag: string | import('vuetify/lib/util').JSXComponent;
                lines: false | "one" | "two" | "three";
                mandatory: boolean;
                returnObject: boolean;
                selectStrategy: import('vuetify/lib/composables/nested/nested').SelectStrategyProp;
                density: import('vuetify/lib/composables/density').Density;
                tile: boolean;
                slim: boolean;
                activatable: boolean;
                selectable: boolean;
                openStrategy: import('vuetify/lib/composables/nested/nested').OpenStrategyProp;
                itemType: string;
                height?: string | number | undefined;
                width?: string | number | undefined;
                border?: string | number | boolean | undefined;
                color?: string | undefined;
                maxHeight?: string | number | undefined;
                maxWidth?: string | number | undefined;
                minHeight?: string | number | undefined;
                minWidth?: string | number | undefined;
                activated?: any;
                class?: any;
                theme?: string | undefined;
                elevation?: string | number | undefined;
                valueComparator?: typeof import('vuetify/lib/util').deepEqual | undefined;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                activeColor?: string | undefined;
                activeClass?: string | undefined;
                activeStrategy?: import('vuetify/lib/composables/nested/nested').ActiveStrategyProp | undefined;
                collapseIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                expandIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onUpdate:activated"?: ((value: unknown) => any) | undefined;
                "onClick:activate"?: ((value: {
                    id: unknown;
                    value: boolean;
                    path: unknown[];
                }) => any) | undefined;
            } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
                items?: readonly any[] | undefined;
                itemTitle?: import('vuetify/lib/util').SelectItemKey<any>;
                itemValue?: import('vuetify/lib/util').SelectItemKey<any>;
                itemChildren?: import('vuetify/lib/util').SelectItemKey<any>;
                itemProps?: import('vuetify/lib/util').SelectItemKey<any>;
                selected?: unknown;
                "onUpdate:selected"?: ((value: unknown) => void) | undefined;
                "onClick:open"?: (value: {
                    id: unknown;
                    value: boolean;
                    path: unknown[];
                }) => void;
                "onClick:select"?: (value: {
                    id: unknown;
                    value: boolean;
                    path: unknown[];
                }) => void;
                opened?: unknown;
                "onUpdate:opened"?: ((value: unknown) => void) | undefined;
            } & {
                $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
                    title?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot & {
                        item: any;
                    }) => import('vue').VNodeChild) | undefined;
                    append?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot & {
                        item: any;
                    }) => import('vue').VNodeChild) | undefined;
                    prepend?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot & {
                        item: any;
                    }) => import('vue').VNodeChild) | undefined;
                    subtitle?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot & {
                        item: any;
                    }) => import('vue').VNodeChild) | undefined;
                    default?: (() => import('vue').VNodeChild) | undefined;
                    item?: ((arg: {
                        props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                    }) => import('vue').VNodeChild) | undefined;
                    divider?: ((arg: {
                        props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                    }) => import('vue').VNodeChild) | undefined;
                    subheader?: ((arg: {
                        props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                    }) => import('vue').VNodeChild) | undefined;
                    header?: ((arg: {
                        props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                    }) => import('vue').VNodeChild) | undefined;
                };
                "v-slots"?: {
                    title?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot & {
                        item: any;
                    }) => import('vue').VNodeChild) | undefined;
                    append?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot & {
                        item: any;
                    }) => import('vue').VNodeChild) | undefined;
                    prepend?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot & {
                        item: any;
                    }) => import('vue').VNodeChild) | undefined;
                    subtitle?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot & {
                        item: any;
                    }) => import('vue').VNodeChild) | undefined;
                    default?: false | (() => import('vue').VNodeChild) | undefined;
                    item?: false | ((arg: {
                        props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                    }) => import('vue').VNodeChild) | undefined;
                    divider?: false | ((arg: {
                        props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                    }) => import('vue').VNodeChild) | undefined;
                    subheader?: false | ((arg: {
                        props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                    }) => import('vue').VNodeChild) | undefined;
                    header?: false | ((arg: {
                        props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                    }) => import('vue').VNodeChild) | undefined;
                } | undefined;
            } & {
                "v-slot:title"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot & {
                    item: any;
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot & {
                    item: any;
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot & {
                    item: any;
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:subtitle"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot & {
                    item: any;
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                "v-slot:item"?: false | ((arg: {
                    props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:divider"?: false | ((arg: {
                    props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:subheader"?: false | ((arg: {
                    props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:header"?: false | ((arg: {
                    props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                }) => import('vue').VNodeChild) | undefined;
            }) | undefined;
            menuProps?: (Partial<{
                location: import('vuetify/lib/util').Anchor | undefined;
                origin: "auto" | import('vuetify/lib/util').Anchor | "overlap";
                transition: string | boolean | (import('vue').TransitionProps & {
                    component?: import('vue').Component;
                }) | {
                    component: {
                        new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<{} & {
                            target?: HTMLElement | [x: number, y: number] | undefined;
                        } & {
                            $children?: import('vue').VNodeChild | {
                                default?: (() => import('vue').VNodeChild) | undefined;
                            } | (() => import('vue').VNodeChild);
                            "v-slots"?: {
                                default?: false | (() => import('vue').VNodeChild) | undefined;
                            } | undefined;
                        } & {
                            "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                        }, () => JSX.Element, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Record<string, any>, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {}, true, {}, import('vue').SlotsType<Partial<{
                            default: () => import('vue').VNode[];
                        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
                            P: {};
                            B: {};
                            D: {};
                            C: {};
                            M: {};
                            Defaults: {};
                        }, {} & {
                            target?: HTMLElement | [x: number, y: number] | undefined;
                        } & {
                            $children?: import('vue').VNodeChild | {
                                default?: (() => import('vue').VNodeChild) | undefined;
                            } | (() => import('vue').VNodeChild);
                            "v-slots"?: {
                                default?: false | (() => import('vue').VNodeChild) | undefined;
                            } | undefined;
                        } & {
                            "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                        }, () => JSX.Element, {}, {}, {}, {}>;
                        __isFragment?: never;
                        __isTeleport?: never;
                        __isSuspense?: never;
                    } & import('vue').ComponentOptionsBase<{} & {
                        target?: HTMLElement | [x: number, y: number] | undefined;
                    } & {
                        $children?: import('vue').VNodeChild | {
                            default?: (() => import('vue').VNodeChild) | undefined;
                        } | (() => import('vue').VNodeChild);
                        "v-slots"?: {
                            default?: false | (() => import('vue').VNodeChild) | undefined;
                        } | undefined;
                    } & {
                        "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                    }, () => JSX.Element, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import('vue').SlotsType<Partial<{
                        default: () => import('vue').VNode[];
                    }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vuetify/lib/util').FilterPropsOptions<{
                        target: PropType<HTMLElement | [x: number, y: number]>;
                    }, import('vue').ExtractPropTypes<{
                        target: PropType<HTMLElement | [x: number, y: number]>;
                    }>>;
                } | null;
                zIndex: string | number;
                style: import('vue').StyleValue;
                eager: boolean;
                disabled: boolean;
                persistent: boolean;
                modelValue: boolean;
                locationStrategy: "connected" | "static" | import('vuetify/lib/types').LocationStrategyFunction;
                scrollStrategy: "none" | "block" | "close" | import('vuetify/lib/types').ScrollStrategyFunction | "reposition";
                closeDelay: string | number;
                openDelay: string | number;
                activatorProps: Record<string, any>;
                openOnClick: boolean;
                openOnHover: boolean;
                openOnFocus: boolean;
                closeOnContentClick: boolean;
                closeOnBack: boolean;
                contained: boolean;
                noClickAnimation: boolean;
                scrim: string | boolean;
                submenu: boolean;
            }> & Omit<{
                location: import('vuetify/lib/util').Anchor | undefined;
                origin: "auto" | import('vuetify/lib/util').Anchor | "overlap";
                transition: string | boolean | (import('vue').TransitionProps & {
                    component?: import('vue').Component;
                }) | {
                    component: {
                        new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<{} & {
                            target?: HTMLElement | [x: number, y: number] | undefined;
                        } & {
                            $children?: import('vue').VNodeChild | {
                                default?: (() => import('vue').VNodeChild) | undefined;
                            } | (() => import('vue').VNodeChild);
                            "v-slots"?: {
                                default?: false | (() => import('vue').VNodeChild) | undefined;
                            } | undefined;
                        } & {
                            "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                        }, () => JSX.Element, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Record<string, any>, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {}, true, {}, import('vue').SlotsType<Partial<{
                            default: () => import('vue').VNode[];
                        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
                            P: {};
                            B: {};
                            D: {};
                            C: {};
                            M: {};
                            Defaults: {};
                        }, {} & {
                            target?: HTMLElement | [x: number, y: number] | undefined;
                        } & {
                            $children?: import('vue').VNodeChild | {
                                default?: (() => import('vue').VNodeChild) | undefined;
                            } | (() => import('vue').VNodeChild);
                            "v-slots"?: {
                                default?: false | (() => import('vue').VNodeChild) | undefined;
                            } | undefined;
                        } & {
                            "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                        }, () => JSX.Element, {}, {}, {}, {}>;
                        __isFragment?: never;
                        __isTeleport?: never;
                        __isSuspense?: never;
                    } & import('vue').ComponentOptionsBase<{} & {
                        target?: HTMLElement | [x: number, y: number] | undefined;
                    } & {
                        $children?: import('vue').VNodeChild | {
                            default?: (() => import('vue').VNodeChild) | undefined;
                        } | (() => import('vue').VNodeChild);
                        "v-slots"?: {
                            default?: false | (() => import('vue').VNodeChild) | undefined;
                        } | undefined;
                    } & {
                        "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                    }, () => JSX.Element, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import('vue').SlotsType<Partial<{
                        default: () => import('vue').VNode[];
                    }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vuetify/lib/util').FilterPropsOptions<{
                        target: PropType<HTMLElement | [x: number, y: number]>;
                    }, import('vue').ExtractPropTypes<{
                        target: PropType<HTMLElement | [x: number, y: number]>;
                    }>>;
                } | null;
                zIndex: string | number;
                style: import('vue').StyleValue;
                eager: boolean;
                disabled: boolean;
                persistent: boolean;
                modelValue: boolean;
                locationStrategy: "connected" | "static" | import('vuetify/lib/types').LocationStrategyFunction;
                scrollStrategy: "none" | "block" | "close" | import('vuetify/lib/types').ScrollStrategyFunction | "reposition";
                closeDelay: string | number;
                openDelay: string | number;
                activatorProps: Record<string, any>;
                openOnHover: boolean;
                closeOnContentClick: boolean;
                closeOnBack: boolean;
                contained: boolean;
                noClickAnimation: boolean;
                scrim: string | boolean;
                submenu: boolean;
                offset?: string | number | number[] | undefined;
                id?: string | undefined;
                height?: string | number | undefined;
                width?: string | number | undefined;
                maxHeight?: string | number | undefined;
                maxWidth?: string | number | undefined;
                minHeight?: string | number | undefined;
                minWidth?: string | number | undefined;
                opacity?: string | number | undefined;
                target?: Element | "cursor" | "parent" | (string & {}) | import('vue').ComponentPublicInstance | [x: number, y: number] | undefined;
                class?: any;
                theme?: string | undefined;
                activator?: Element | "parent" | (string & {}) | import('vue').ComponentPublicInstance | undefined;
                openOnClick?: boolean | undefined;
                openOnFocus?: boolean | undefined;
                contentClass?: any;
                contentProps?: any;
                attach?: string | boolean | Element | undefined;
                $children?: import('vue').VNodeChild | {
                    default?: ((arg: {
                        isActive: import('vue').Ref<boolean>;
                    }) => import('vue').VNodeChild) | undefined;
                    activator?: ((arg: {
                        isActive: boolean;
                        props: Record<string, any>;
                        targetRef: import('vuetify/lib/util').TemplateRef;
                    }) => import('vue').VNodeChild) | undefined;
                } | ((arg: {
                    isActive: import('vue').Ref<boolean>;
                }) => import('vue').VNodeChild);
                "v-slots"?: {
                    default?: false | ((arg: {
                        isActive: import('vue').Ref<boolean>;
                    }) => import('vue').VNodeChild) | undefined;
                    activator?: false | ((arg: {
                        isActive: boolean;
                        props: Record<string, any>;
                        targetRef: import('vuetify/lib/util').TemplateRef;
                    }) => import('vue').VNodeChild) | undefined;
                } | undefined;
                "v-slot:default"?: false | ((arg: {
                    isActive: import('vue').Ref<boolean>;
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:activator"?: false | ((arg: {
                    isActive: boolean;
                    props: Record<string, any>;
                    targetRef: import('vuetify/lib/util').TemplateRef;
                }) => import('vue').VNodeChild) | undefined;
                "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
            } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu">) | undefined;
            itemColor?: string | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
            "onUpdate:menu"?: ((ue: boolean) => any) | undefined;
        }, {
            isFocused: import('vue').ShallowRef<boolean, boolean>;
            menu: import('vue').WritableComputedRef<boolean, boolean>;
            select: (item: import('vuetify/lib/composables/list-items').ListItem, set?: boolean | null) => void;
        } & Omit<Omit<{
            $: import('vue').ComponentInternalInstance;
            $data: {};
            $props: Partial<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                type: string;
                error: boolean;
                active: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                autofocus: boolean;
                disabled: boolean;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
                persistentPlaceholder: boolean;
                persistentCounter: boolean;
            }> & Omit<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                type: string;
                error: boolean;
                active: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                autofocus: boolean;
                disabled: boolean;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
                persistentPlaceholder: boolean;
                persistentCounter: boolean;
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                prefix?: string | undefined;
                role?: string | undefined;
                class?: any;
                theme?: string | undefined;
                placeholder?: string | undefined;
                counter?: string | number | boolean | undefined;
                "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
                modelValue?: any;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
                suffix?: string | undefined;
                counterValue?: number | ((value: any) => number) | undefined;
                modelModifiers?: Record<string, boolean> | undefined;
                $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
                    message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                    clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        props: Record<string, any>;
                    }) => import('vue').VNodeChild) | undefined;
                    details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        label: string | undefined;
                        props: Record<string, any>;
                    }) => import('vue').VNodeChild) | undefined;
                    append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                    "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                    "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                    default?: (() => import('vue').VNodeChild) | undefined;
                    counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
                };
                "v-slots"?: {
                    message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                    clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        props: Record<string, any>;
                    }) => import('vue').VNodeChild) | undefined;
                    details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        label: string | undefined;
                        props: Record<string, any>;
                    }) => import('vue').VNodeChild) | undefined;
                    append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                    "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                    "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                    default?: false | (() => import('vue').VNodeChild) | undefined;
                    counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
                } | undefined;
                "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
                "onUpdate:modelValue"?: ((val: string) => any) | undefined;
                "onClick:control"?: ((e: MouseEvent) => any) | undefined;
                "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
            } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter">;
            $attrs: {
                [x: string]: unknown;
            };
            $refs: {
                [x: string]: unknown;
            };
            $slots: Readonly<{
                message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
                clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNode[]) | undefined;
                details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNode[]) | undefined;
                append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
                "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                default?: (() => import('vue').VNode[]) | undefined;
                counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNode[]) | undefined;
            }>;
            $root: import('vue').ComponentPublicInstance | null;
            $parent: import('vue').ComponentPublicInstance | null;
            $host: Element | null;
            $emit: ((event: "update:modelValue", val: string) => void) & ((event: "update:focused", focused: boolean) => void) & ((event: "click:control", e: MouseEvent) => void) & ((event: "mousedown:control", e: MouseEvent) => void);
            $el: any;
            $options: import('vue').ComponentOptionsBase<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                type: string;
                error: boolean;
                active: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                autofocus: boolean;
                disabled: boolean;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
                persistentPlaceholder: boolean;
                persistentCounter: boolean;
            } & {
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                prefix?: string | undefined;
                role?: string | undefined;
                class?: any;
                theme?: string | undefined;
                placeholder?: string | undefined;
                counter?: string | number | boolean | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                modelValue?: any;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
                suffix?: string | undefined;
                counterValue?: number | ((value: any) => number) | undefined;
                modelModifiers?: Record<string, boolean> | undefined;
            } & {
                $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
                    message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                    clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        props: Record<string, any>;
                    }) => import('vue').VNodeChild) | undefined;
                    details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        label: string | undefined;
                        props: Record<string, any>;
                    }) => import('vue').VNodeChild) | undefined;
                    append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                    "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                    "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                    default?: (() => import('vue').VNodeChild) | undefined;
                    counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
                };
                "v-slots"?: {
                    message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                    clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        props: Record<string, any>;
                    }) => import('vue').VNodeChild) | undefined;
                    details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        label: string | undefined;
                        props: Record<string, any>;
                    }) => import('vue').VNodeChild) | undefined;
                    append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                    loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                    "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                    "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                    default?: false | (() => import('vue').VNodeChild) | undefined;
                    counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
                } | undefined;
            } & {
                "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
            } & {
                "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
                "onUpdate:modelValue"?: ((val: string) => any) | undefined;
                "onClick:control"?: ((e: MouseEvent) => any) | undefined;
                "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
            }, HTMLInputElement & Omit<Omit<{
                $: import('vue').ComponentInternalInstance;
                $data: {};
                $props: Partial<{
                    error: boolean;
                    direction: "horizontal" | "vertical";
                    style: import('vue').StyleValue;
                    disabled: boolean | null;
                    readonly: boolean | null;
                    messages: string | readonly string[];
                    rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                    focused: boolean;
                    errorMessages: string | readonly string[] | null;
                    maxErrors: string | number;
                    density: import('vuetify/lib/composables/density').Density;
                    centerAffix: boolean;
                    glow: boolean;
                    hideSpinButtons: boolean;
                    persistentHint: boolean;
                }> & Omit<{
                    error: boolean;
                    direction: "horizontal" | "vertical";
                    style: import('vue').StyleValue;
                    disabled: boolean | null;
                    readonly: boolean | null;
                    messages: string | readonly string[];
                    rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                    focused: boolean;
                    errorMessages: string | readonly string[] | null;
                    maxErrors: string | number;
                    density: import('vuetify/lib/composables/density').Density;
                    centerAffix: boolean;
                    glow: boolean;
                    hideSpinButtons: boolean;
                    persistentHint: boolean;
                    name?: string | undefined;
                    id?: string | undefined;
                    width?: string | number | undefined;
                    color?: string | undefined;
                    maxWidth?: string | number | undefined;
                    minWidth?: string | number | undefined;
                    label?: string | undefined;
                    class?: any;
                    theme?: string | undefined;
                    "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                    validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                    validationValue?: any;
                    baseColor?: string | undefined;
                    prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                    iconColor?: string | boolean | undefined;
                    hint?: string | undefined;
                    hideDetails?: boolean | "auto" | undefined;
                } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
                $attrs: {
                    [x: string]: unknown;
                };
                $refs: {
                    [x: string]: unknown;
                };
                $slots: Readonly<{
                    default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                    prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                    append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                    details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                    message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
                }>;
                $root: import('vue').ComponentPublicInstance | null;
                $parent: import('vue').ComponentPublicInstance | null;
                $host: Element | null;
                $emit: (event: string, ...args: any[]) => void;
                $el: any;
                $options: import('vue').ComponentOptionsBase<{
                    error: boolean;
                    direction: "horizontal" | "vertical";
                    style: import('vue').StyleValue;
                    disabled: boolean | null;
                    readonly: boolean | null;
                    messages: string | readonly string[];
                    rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                    focused: boolean;
                    errorMessages: string | readonly string[] | null;
                    maxErrors: string | number;
                    density: import('vuetify/lib/composables/density').Density;
                    centerAffix: boolean;
                    glow: boolean;
                    hideSpinButtons: boolean;
                    persistentHint: boolean;
                } & {
                    name?: string | undefined;
                    id?: string | undefined;
                    width?: string | number | undefined;
                    color?: string | undefined;
                    maxWidth?: string | number | undefined;
                    minWidth?: string | number | undefined;
                    label?: string | undefined;
                    class?: any;
                    theme?: string | undefined;
                    "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                    validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                    validationValue?: any;
                    baseColor?: string | undefined;
                    prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                    iconColor?: string | boolean | undefined;
                    hint?: string | undefined;
                    hideDetails?: boolean | "auto" | undefined;
                } & {}, {
                    reset: () => Promise<void>;
                    resetValidation: () => Promise<void>;
                    validate: (silent?: boolean) => Promise<string[]>;
                    isValid: import('vue').ComputedRef<boolean | null>;
                    errorMessages: import('vue').ComputedRef<string[]>;
                }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                    "update:modelValue": (value: any) => true;
                }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
                    error: boolean;
                    direction: "horizontal" | "vertical";
                    style: import('vue').StyleValue;
                    disabled: boolean | null;
                    readonly: boolean | null;
                    messages: string | readonly string[];
                    rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                    focused: boolean;
                    errorMessages: string | readonly string[] | null;
                    maxErrors: string | number;
                    density: import('vuetify/lib/composables/density').Density;
                    centerAffix: boolean;
                    glow: boolean;
                    hideSpinButtons: boolean;
                    persistentHint: boolean;
                }, {}, string, import('vue').SlotsType<Partial<{
                    default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                    prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                    append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                    details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                    message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
                }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                    beforeCreate?: (() => void) | (() => void)[];
                    created?: (() => void) | (() => void)[];
                    beforeMount?: (() => void) | (() => void)[];
                    mounted?: (() => void) | (() => void)[];
                    beforeUpdate?: (() => void) | (() => void)[];
                    updated?: (() => void) | (() => void)[];
                    activated?: (() => void) | (() => void)[];
                    deactivated?: (() => void) | (() => void)[];
                    beforeDestroy?: (() => void) | (() => void)[];
                    beforeUnmount?: (() => void) | (() => void)[];
                    destroyed?: (() => void) | (() => void)[];
                    unmounted?: (() => void) | (() => void)[];
                    renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                    renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                    errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
                };
                $forceUpdate: () => void;
                $nextTick: typeof nextTick;
                $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
            } & Readonly<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            }> & Omit<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            } & {
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                baseColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
            } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import('vue').ShallowUnwrapRef<{
                reset: () => Promise<void>;
                resetValidation: () => Promise<void>;
                validate: (silent?: boolean) => Promise<string[]>;
                isValid: import('vue').ComputedRef<boolean | null>;
                errorMessages: import('vue').ComputedRef<string[]>;
            }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
                modelValue?: unknown;
                "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
            }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
                $: import('vue').ComponentInternalInstance;
                $data: {};
                $props: Partial<{
                    flat: boolean;
                    reverse: boolean;
                    variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                    error: boolean;
                    active: boolean;
                    style: import('vue').StyleValue;
                    disabled: boolean;
                    focused: boolean;
                    rounded: string | number | boolean;
                    tile: boolean;
                    clearIcon: import('vuetify/lib/composables/icons').IconValue;
                    centerAffix: boolean;
                    glow: boolean;
                    clearable: boolean;
                    dirty: boolean;
                    persistentClear: boolean;
                    singleLine: boolean;
                }> & Omit<{
                    flat: boolean;
                    reverse: boolean;
                    variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                    error: boolean;
                    active: boolean;
                    style: import('vue').StyleValue;
                    disabled: boolean;
                    focused: boolean;
                    tile: boolean;
                    clearIcon: import('vuetify/lib/composables/icons').IconValue;
                    glow: boolean;
                    clearable: boolean;
                    dirty: boolean;
                    persistentClear: boolean;
                    singleLine: boolean;
                    id?: string | undefined;
                    color?: string | undefined;
                    loading?: string | boolean | undefined;
                    label?: string | undefined;
                    class?: any;
                    theme?: string | undefined;
                    "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
                    rounded?: string | number | boolean | undefined;
                    baseColor?: string | undefined;
                    bgColor?: string | undefined;
                    appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                    centerAffix?: boolean | undefined;
                    iconColor?: string | boolean | undefined;
                } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
                $attrs: {
                    [x: string]: unknown;
                };
                $refs: {
                    [x: string]: unknown;
                };
                $slots: Readonly<{
                    clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        props: Record<string, any>;
                    }) => import('vue').VNode[]) | undefined;
                    "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                    "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                    label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        label: string | undefined;
                        props: Record<string, any>;
                    }) => import('vue').VNode[]) | undefined;
                    loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
                    default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
                }>;
                $root: import('vue').ComponentPublicInstance | null;
                $parent: import('vue').ComponentPublicInstance | null;
                $host: Element | null;
                $emit: (event: "update:focused", focused: boolean) => void;
                $el: any;
                $options: import('vue').ComponentOptionsBase<{
                    flat: boolean;
                    reverse: boolean;
                    variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                    error: boolean;
                    active: boolean;
                    style: import('vue').StyleValue;
                    disabled: boolean;
                    focused: boolean;
                    tile: boolean;
                    clearIcon: import('vuetify/lib/composables/icons').IconValue;
                    glow: boolean;
                    clearable: boolean;
                    dirty: boolean;
                    persistentClear: boolean;
                    singleLine: boolean;
                } & {
                    id?: string | undefined;
                    color?: string | undefined;
                    loading?: string | boolean | undefined;
                    label?: string | undefined;
                    class?: any;
                    theme?: string | undefined;
                    "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                    rounded?: string | number | boolean | undefined;
                    baseColor?: string | undefined;
                    bgColor?: string | undefined;
                    appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                    centerAffix?: boolean | undefined;
                    iconColor?: string | boolean | undefined;
                } & {
                    "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
                }, {
                    controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                    fieldIconColor: import('vue').ComputedRef<string | undefined>;
                }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                    "update:focused": (focused: boolean) => true;
                    "update:modelValue": (value: any) => true;
                }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
                    flat: boolean;
                    reverse: boolean;
                    variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                    error: boolean;
                    active: boolean;
                    style: import('vue').StyleValue;
                    disabled: boolean;
                    focused: boolean;
                    rounded: string | number | boolean;
                    tile: boolean;
                    clearIcon: import('vuetify/lib/composables/icons').IconValue;
                    centerAffix: boolean;
                    glow: boolean;
                    clearable: boolean;
                    dirty: boolean;
                    persistentClear: boolean;
                    singleLine: boolean;
                }, {}, string, import('vue').SlotsType<Partial<{
                    clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        props: Record<string, any>;
                    }) => import('vue').VNode[];
                    "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                    "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                    label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        label: string | undefined;
                        props: Record<string, any>;
                    }) => import('vue').VNode[];
                    loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
                    default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
                }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                    beforeCreate?: (() => void) | (() => void)[];
                    created?: (() => void) | (() => void)[];
                    beforeMount?: (() => void) | (() => void)[];
                    mounted?: (() => void) | (() => void)[];
                    beforeUpdate?: (() => void) | (() => void)[];
                    updated?: (() => void) | (() => void)[];
                    activated?: (() => void) | (() => void)[];
                    deactivated?: (() => void) | (() => void)[];
                    beforeDestroy?: (() => void) | (() => void)[];
                    beforeUnmount?: (() => void) | (() => void)[];
                    destroyed?: (() => void) | (() => void)[];
                    unmounted?: (() => void) | (() => void)[];
                    renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                    renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                    errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
                };
                $forceUpdate: () => void;
                $nextTick: typeof nextTick;
                $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
            } & Readonly<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            }> & Omit<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            } & {
                id?: string | undefined;
                color?: string | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
            } & {
                "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
            }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
                controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                fieldIconColor: import('vue').ComputedRef<string | undefined>;
            }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
                modelValue?: unknown;
                "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
            }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
                _allExposed: {
                    reset: () => Promise<void>;
                    resetValidation: () => Promise<void>;
                    validate: (silent?: boolean) => Promise<string[]>;
                    isValid: import('vue').ComputedRef<boolean | null>;
                    errorMessages: import('vue').ComputedRef<string[]>;
                } | {
                    controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                    fieldIconColor: import('vue').ComputedRef<string | undefined>;
                } | {};
            }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
                "click:control": (e: MouseEvent) => true;
                "mousedown:control": (e: MouseEvent) => true;
                "update:focused": (focused: boolean) => true;
                "update:modelValue": (val: string) => true;
            }, string, {
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                type: string;
                error: boolean;
                active: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                autofocus: boolean;
                disabled: boolean;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
                persistentPlaceholder: boolean;
                persistentCounter: boolean;
            }, {}, string, import('vue').SlotsType<Partial<{
                message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
                clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNode[];
                details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNode[];
                append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
                "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                default: () => import('vue').VNode[];
                counter: (arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNode[];
            }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                beforeCreate?: (() => void) | (() => void)[];
                created?: (() => void) | (() => void)[];
                beforeMount?: (() => void) | (() => void)[];
                mounted?: (() => void) | (() => void)[];
                beforeUpdate?: (() => void) | (() => void)[];
                updated?: (() => void) | (() => void)[];
                activated?: (() => void) | (() => void)[];
                deactivated?: (() => void) | (() => void)[];
                beforeDestroy?: (() => void) | (() => void)[];
                beforeUnmount?: (() => void) | (() => void)[];
                destroyed?: (() => void) | (() => void)[];
                unmounted?: (() => void) | (() => void)[];
                renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
            };
            $forceUpdate: () => void;
            $nextTick: typeof nextTick;
            $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
        } & Readonly<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            type: string;
            error: boolean;
            active: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            autofocus: boolean;
            disabled: boolean;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            persistentPlaceholder: boolean;
            persistentCounter: boolean;
        }> & Omit<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            type: string;
            error: boolean;
            active: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            autofocus: boolean;
            disabled: boolean;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            persistentPlaceholder: boolean;
            persistentCounter: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            prefix?: string | undefined;
            role?: string | undefined;
            class?: any;
            theme?: string | undefined;
            placeholder?: string | undefined;
            counter?: string | number | boolean | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            modelValue?: any;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
            suffix?: string | undefined;
            counterValue?: number | ((value: any) => number) | undefined;
            modelModifiers?: Record<string, boolean> | undefined;
        } & {
            $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
                message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                default?: (() => import('vue').VNodeChild) | undefined;
                counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
            };
            "v-slots"?: {
                message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                default?: false | (() => import('vue').VNodeChild) | undefined;
                counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
            } | undefined;
        } & {
            "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
            "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
            "onUpdate:modelValue"?: ((val: string) => any) | undefined;
            "onClick:control"?: ((e: MouseEvent) => any) | undefined;
            "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
        }, "normalize" | "flat" | "reverse" | "variant" | "name" | "max" | "required" | "type" | "error" | "id" | "matches" | "height" | "width" | "active" | "remove" | "min" | "direction" | "translate" | "contains" | "value" | "hidden" | "form" | "select" | "slot" | "style" | "title" | "dir" | "animate" | "pattern" | "blur" | "click" | "focus" | "reset" | "scroll" | "autocomplete" | "checkValidity" | "reportValidity" | "addEventListener" | "removeEventListener" | "accessKey" | "accessKeyLabel" | "autocapitalize" | "draggable" | "inert" | "innerText" | "lang" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "spellcheck" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "innerHTML" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "part" | "prefix" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttribute" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "_clickOutside" | "_onResize" | "_ripple" | "_observe" | "_mutate" | "_onScroll" | "_touchHandlers" | "_transitionInitialStyles" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "textContent" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColIndexText" | "ariaColSpan" | "ariaCurrent" | "ariaDescription" | "ariaDisabled" | "ariaExpanded" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabel" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "role" | "getAnimations" | "after" | "before" | "replaceWith" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "children" | "firstElementChild" | "lastElementChild" | "append" | "prepend" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "enterKeyHint" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclick" | "onclose" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onkeydown" | "onkeypress" | "onkeyup" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "autofocus" | "dataset" | "nonce" | "tabIndex" | "disabled" | "labels" | "multiple" | "size" | "validationMessage" | "validity" | "willValidate" | "setCustomValidity" | "showPicker" | "readonly" | "maxLength" | "list" | "accept" | "readOnly" | "_" | "alt" | "step" | "placeholder" | "src" | "capture" | "checked" | "indeterminate" | "align" | "messages" | "rules" | "minLength" | "isValid" | "focused" | "errorMessages" | "maxErrors" | "validate" | "resetValidation" | "density" | "rounded" | "tile" | "_allExposed" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor" | "persistentPlaceholder" | "persistentCounter" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "selectionDirection" | "selectionEnd" | "selectionStart" | "useMap" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "setRangeText" | "setSelectionRange" | "stepDown" | "stepUp" | "popoverTargetAction" | "popoverTargetElement"> & import('vue').ShallowUnwrapRef<HTMLInputElement & Omit<Omit<{
            $: import('vue').ComponentInternalInstance;
            $data: {};
            $props: Partial<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            }> & Omit<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                baseColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
            } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
            $attrs: {
                [x: string]: unknown;
            };
            $refs: {
                [x: string]: unknown;
            };
            $slots: Readonly<{
                default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
            }>;
            $root: import('vue').ComponentPublicInstance | null;
            $parent: import('vue').ComponentPublicInstance | null;
            $host: Element | null;
            $emit: (event: string, ...args: any[]) => void;
            $el: any;
            $options: import('vue').ComponentOptionsBase<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            } & {
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                baseColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
            } & {}, {
                reset: () => Promise<void>;
                resetValidation: () => Promise<void>;
                validate: (silent?: boolean) => Promise<string[]>;
                isValid: import('vue').ComputedRef<boolean | null>;
                errorMessages: import('vue').ComputedRef<string[]>;
            }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                "update:modelValue": (value: any) => true;
            }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            }, {}, string, import('vue').SlotsType<Partial<{
                default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
            }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                beforeCreate?: (() => void) | (() => void)[];
                created?: (() => void) | (() => void)[];
                beforeMount?: (() => void) | (() => void)[];
                mounted?: (() => void) | (() => void)[];
                beforeUpdate?: (() => void) | (() => void)[];
                updated?: (() => void) | (() => void)[];
                activated?: (() => void) | (() => void)[];
                deactivated?: (() => void) | (() => void)[];
                beforeDestroy?: (() => void) | (() => void)[];
                beforeUnmount?: (() => void) | (() => void)[];
                destroyed?: (() => void) | (() => void)[];
                unmounted?: (() => void) | (() => void)[];
                renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
            };
            $forceUpdate: () => void;
            $nextTick: typeof nextTick;
            $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
        } & Readonly<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }> & Omit<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import('vue').ShallowUnwrapRef<{
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
            modelValue?: unknown;
            "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
        }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
            $: import('vue').ComponentInternalInstance;
            $data: {};
            $props: Partial<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            }> & Omit<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
                id?: string | undefined;
                color?: string | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
            } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
            $attrs: {
                [x: string]: unknown;
            };
            $refs: {
                [x: string]: unknown;
            };
            $slots: Readonly<{
                clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNode[]) | undefined;
                "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNode[]) | undefined;
                loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
                default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
            }>;
            $root: import('vue').ComponentPublicInstance | null;
            $parent: import('vue').ComponentPublicInstance | null;
            $host: Element | null;
            $emit: (event: "update:focused", focused: boolean) => void;
            $el: any;
            $options: import('vue').ComponentOptionsBase<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            } & {
                id?: string | undefined;
                color?: string | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
            } & {
                "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
            }, {
                controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                fieldIconColor: import('vue').ComputedRef<string | undefined>;
            }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                "update:focused": (focused: boolean) => true;
                "update:modelValue": (value: any) => true;
            }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            }, {}, string, import('vue').SlotsType<Partial<{
                clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNode[];
                "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNode[];
                loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
                default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
            }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                beforeCreate?: (() => void) | (() => void)[];
                created?: (() => void) | (() => void)[];
                beforeMount?: (() => void) | (() => void)[];
                mounted?: (() => void) | (() => void)[];
                beforeUpdate?: (() => void) | (() => void)[];
                updated?: (() => void) | (() => void)[];
                activated?: (() => void) | (() => void)[];
                deactivated?: (() => void) | (() => void)[];
                beforeDestroy?: (() => void) | (() => void)[];
                beforeUnmount?: (() => void) | (() => void)[];
                destroyed?: (() => void) | (() => void)[];
                unmounted?: (() => void) | (() => void)[];
                renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
            };
            $forceUpdate: () => void;
            $nextTick: typeof nextTick;
            $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
        } & Readonly<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }> & Omit<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        } & {
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
            modelValue?: unknown;
            "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
        }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
            _allExposed: {
                reset: () => Promise<void>;
                resetValidation: () => Promise<void>;
                validate: (silent?: boolean) => Promise<string[]>;
                isValid: import('vue').ComputedRef<boolean | null>;
                errorMessages: import('vue').ComputedRef<string[]>;
            } | {
                controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                fieldIconColor: import('vue').ComputedRef<string | undefined>;
            } | {};
        }> & {} & import('vue').ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
            _allExposed: (HTMLInputElement & Omit<Omit<{
                $: import('vue').ComponentInternalInstance;
                $data: {};
                $props: Partial<{
                    error: boolean;
                    direction: "horizontal" | "vertical";
                    style: import('vue').StyleValue;
                    disabled: boolean | null;
                    readonly: boolean | null;
                    messages: string | readonly string[];
                    rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                    focused: boolean;
                    errorMessages: string | readonly string[] | null;
                    maxErrors: string | number;
                    density: import('vuetify/lib/composables/density').Density;
                    centerAffix: boolean;
                    glow: boolean;
                    hideSpinButtons: boolean;
                    persistentHint: boolean;
                }> & Omit<{
                    error: boolean;
                    direction: "horizontal" | "vertical";
                    style: import('vue').StyleValue;
                    disabled: boolean | null;
                    readonly: boolean | null;
                    messages: string | readonly string[];
                    rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                    focused: boolean;
                    errorMessages: string | readonly string[] | null;
                    maxErrors: string | number;
                    density: import('vuetify/lib/composables/density').Density;
                    centerAffix: boolean;
                    glow: boolean;
                    hideSpinButtons: boolean;
                    persistentHint: boolean;
                    name?: string | undefined;
                    id?: string | undefined;
                    width?: string | number | undefined;
                    color?: string | undefined;
                    maxWidth?: string | number | undefined;
                    minWidth?: string | number | undefined;
                    label?: string | undefined;
                    class?: any;
                    theme?: string | undefined;
                    "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                    validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                    validationValue?: any;
                    baseColor?: string | undefined;
                    prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                    iconColor?: string | boolean | undefined;
                    hint?: string | undefined;
                    hideDetails?: boolean | "auto" | undefined;
                } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
                $attrs: {
                    [x: string]: unknown;
                };
                $refs: {
                    [x: string]: unknown;
                };
                $slots: Readonly<{
                    default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                    prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                    append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                    details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                    message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
                }>;
                $root: import('vue').ComponentPublicInstance | null;
                $parent: import('vue').ComponentPublicInstance | null;
                $host: Element | null;
                $emit: (event: string, ...args: any[]) => void;
                $el: any;
                $options: import('vue').ComponentOptionsBase<{
                    error: boolean;
                    direction: "horizontal" | "vertical";
                    style: import('vue').StyleValue;
                    disabled: boolean | null;
                    readonly: boolean | null;
                    messages: string | readonly string[];
                    rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                    focused: boolean;
                    errorMessages: string | readonly string[] | null;
                    maxErrors: string | number;
                    density: import('vuetify/lib/composables/density').Density;
                    centerAffix: boolean;
                    glow: boolean;
                    hideSpinButtons: boolean;
                    persistentHint: boolean;
                } & {
                    name?: string | undefined;
                    id?: string | undefined;
                    width?: string | number | undefined;
                    color?: string | undefined;
                    maxWidth?: string | number | undefined;
                    minWidth?: string | number | undefined;
                    label?: string | undefined;
                    class?: any;
                    theme?: string | undefined;
                    "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                    validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                    validationValue?: any;
                    baseColor?: string | undefined;
                    prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                    iconColor?: string | boolean | undefined;
                    hint?: string | undefined;
                    hideDetails?: boolean | "auto" | undefined;
                } & {}, {
                    reset: () => Promise<void>;
                    resetValidation: () => Promise<void>;
                    validate: (silent?: boolean) => Promise<string[]>;
                    isValid: import('vue').ComputedRef<boolean | null>;
                    errorMessages: import('vue').ComputedRef<string[]>;
                }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                    "update:modelValue": (value: any) => true;
                }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
                    error: boolean;
                    direction: "horizontal" | "vertical";
                    style: import('vue').StyleValue;
                    disabled: boolean | null;
                    readonly: boolean | null;
                    messages: string | readonly string[];
                    rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                    focused: boolean;
                    errorMessages: string | readonly string[] | null;
                    maxErrors: string | number;
                    density: import('vuetify/lib/composables/density').Density;
                    centerAffix: boolean;
                    glow: boolean;
                    hideSpinButtons: boolean;
                    persistentHint: boolean;
                }, {}, string, import('vue').SlotsType<Partial<{
                    default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                    prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                    append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                    details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                    message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
                }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                    beforeCreate?: (() => void) | (() => void)[];
                    created?: (() => void) | (() => void)[];
                    beforeMount?: (() => void) | (() => void)[];
                    mounted?: (() => void) | (() => void)[];
                    beforeUpdate?: (() => void) | (() => void)[];
                    updated?: (() => void) | (() => void)[];
                    activated?: (() => void) | (() => void)[];
                    deactivated?: (() => void) | (() => void)[];
                    beforeDestroy?: (() => void) | (() => void)[];
                    beforeUnmount?: (() => void) | (() => void)[];
                    destroyed?: (() => void) | (() => void)[];
                    unmounted?: (() => void) | (() => void)[];
                    renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                    renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                    errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
                };
                $forceUpdate: () => void;
                $nextTick: typeof nextTick;
                $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
            } & Readonly<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            }> & Omit<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            } & {
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                baseColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
            } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import('vue').ShallowUnwrapRef<{
                reset: () => Promise<void>;
                resetValidation: () => Promise<void>;
                validate: (silent?: boolean) => Promise<string[]>;
                isValid: import('vue').ComputedRef<boolean | null>;
                errorMessages: import('vue').ComputedRef<string[]>;
            }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
                modelValue?: unknown;
                "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
            }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
                $: import('vue').ComponentInternalInstance;
                $data: {};
                $props: Partial<{
                    flat: boolean;
                    reverse: boolean;
                    variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                    error: boolean;
                    active: boolean;
                    style: import('vue').StyleValue;
                    disabled: boolean;
                    focused: boolean;
                    rounded: string | number | boolean;
                    tile: boolean;
                    clearIcon: import('vuetify/lib/composables/icons').IconValue;
                    centerAffix: boolean;
                    glow: boolean;
                    clearable: boolean;
                    dirty: boolean;
                    persistentClear: boolean;
                    singleLine: boolean;
                }> & Omit<{
                    flat: boolean;
                    reverse: boolean;
                    variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                    error: boolean;
                    active: boolean;
                    style: import('vue').StyleValue;
                    disabled: boolean;
                    focused: boolean;
                    tile: boolean;
                    clearIcon: import('vuetify/lib/composables/icons').IconValue;
                    glow: boolean;
                    clearable: boolean;
                    dirty: boolean;
                    persistentClear: boolean;
                    singleLine: boolean;
                    id?: string | undefined;
                    color?: string | undefined;
                    loading?: string | boolean | undefined;
                    label?: string | undefined;
                    class?: any;
                    theme?: string | undefined;
                    "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
                    rounded?: string | number | boolean | undefined;
                    baseColor?: string | undefined;
                    bgColor?: string | undefined;
                    appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                    centerAffix?: boolean | undefined;
                    iconColor?: string | boolean | undefined;
                } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
                $attrs: {
                    [x: string]: unknown;
                };
                $refs: {
                    [x: string]: unknown;
                };
                $slots: Readonly<{
                    clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        props: Record<string, any>;
                    }) => import('vue').VNode[]) | undefined;
                    "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                    "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                    label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        label: string | undefined;
                        props: Record<string, any>;
                    }) => import('vue').VNode[]) | undefined;
                    loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
                    default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
                }>;
                $root: import('vue').ComponentPublicInstance | null;
                $parent: import('vue').ComponentPublicInstance | null;
                $host: Element | null;
                $emit: (event: "update:focused", focused: boolean) => void;
                $el: any;
                $options: import('vue').ComponentOptionsBase<{
                    flat: boolean;
                    reverse: boolean;
                    variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                    error: boolean;
                    active: boolean;
                    style: import('vue').StyleValue;
                    disabled: boolean;
                    focused: boolean;
                    tile: boolean;
                    clearIcon: import('vuetify/lib/composables/icons').IconValue;
                    glow: boolean;
                    clearable: boolean;
                    dirty: boolean;
                    persistentClear: boolean;
                    singleLine: boolean;
                } & {
                    id?: string | undefined;
                    color?: string | undefined;
                    loading?: string | boolean | undefined;
                    label?: string | undefined;
                    class?: any;
                    theme?: string | undefined;
                    "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                    rounded?: string | number | boolean | undefined;
                    baseColor?: string | undefined;
                    bgColor?: string | undefined;
                    appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                    "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                    "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                    centerAffix?: boolean | undefined;
                    iconColor?: string | boolean | undefined;
                } & {
                    "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
                }, {
                    controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                    fieldIconColor: import('vue').ComputedRef<string | undefined>;
                }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                    "update:focused": (focused: boolean) => true;
                    "update:modelValue": (value: any) => true;
                }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
                    flat: boolean;
                    reverse: boolean;
                    variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                    error: boolean;
                    active: boolean;
                    style: import('vue').StyleValue;
                    disabled: boolean;
                    focused: boolean;
                    rounded: string | number | boolean;
                    tile: boolean;
                    clearIcon: import('vuetify/lib/composables/icons').IconValue;
                    centerAffix: boolean;
                    glow: boolean;
                    clearable: boolean;
                    dirty: boolean;
                    persistentClear: boolean;
                    singleLine: boolean;
                }, {}, string, import('vue').SlotsType<Partial<{
                    clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        props: Record<string, any>;
                    }) => import('vue').VNode[];
                    "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                    "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                    label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                        label: string | undefined;
                        props: Record<string, any>;
                    }) => import('vue').VNode[];
                    loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
                    default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
                }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                    beforeCreate?: (() => void) | (() => void)[];
                    created?: (() => void) | (() => void)[];
                    beforeMount?: (() => void) | (() => void)[];
                    mounted?: (() => void) | (() => void)[];
                    beforeUpdate?: (() => void) | (() => void)[];
                    updated?: (() => void) | (() => void)[];
                    activated?: (() => void) | (() => void)[];
                    deactivated?: (() => void) | (() => void)[];
                    beforeDestroy?: (() => void) | (() => void)[];
                    beforeUnmount?: (() => void) | (() => void)[];
                    destroyed?: (() => void) | (() => void)[];
                    unmounted?: (() => void) | (() => void)[];
                    renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                    renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                    errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
                };
                $forceUpdate: () => void;
                $nextTick: typeof nextTick;
                $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
            } & Readonly<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            }> & Omit<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            } & {
                id?: string | undefined;
                color?: string | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
            } & {
                "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
            }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
                controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                fieldIconColor: import('vue').ComputedRef<string | undefined>;
            }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
                modelValue?: unknown;
                "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
            }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
                _allExposed: {
                    reset: () => Promise<void>;
                    resetValidation: () => Promise<void>;
                    validate: (silent?: boolean) => Promise<string[]>;
                    isValid: import('vue').ComputedRef<boolean | null>;
                    errorMessages: import('vue').ComputedRef<string[]>;
                } | {
                    controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                    fieldIconColor: import('vue').ComputedRef<string | undefined>;
                } | {};
            }) | {
                isFocused: import('vue').ShallowRef<boolean, boolean>;
                menu: import('vue').WritableComputedRef<boolean, boolean>;
                select: (item: import('vuetify/lib/composables/list-items').ListItem, set?: boolean | null) => void;
            };
        }, {}, {}, {}, {
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            type: string;
            error: boolean;
            active: boolean;
            direction: "horizontal" | "vertical";
            transition: string | boolean | (import('vue').TransitionProps & {
                component?: import('vue').Component;
            }) | {
                component: import('vue').Component;
            } | null;
            menu: boolean;
            style: import('vue').StyleValue;
            role: string;
            autofocus: boolean;
            eager: boolean;
            disabled: boolean;
            readonly: boolean | null;
            messages: string | readonly string[];
            noDataText: string;
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            rounded: string | number | boolean;
            tile: boolean;
            closeText: string;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            itemChildren: import('vuetify/lib/util').SelectItemKey;
            clearable: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            persistentPlaceholder: boolean;
            persistentCounter: boolean;
            chips: boolean;
            closableChips: boolean;
            openText: string;
            hideNoData: boolean;
            hideSelected: boolean;
            menuIcon: import('vuetify/lib/composables/icons').IconValue;
            openOnClear: boolean;
        }>;
        __isFragment?: never;
        __isTeleport?: never;
        __isSuspense?: never;
    } & import('vue').ComponentOptionsBase<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        transition: string | boolean | (import('vue').TransitionProps & {
            component?: import('vue').Component;
        }) | {
            component: import('vue').Component;
        } | null;
        menu: boolean;
        style: import('vue').StyleValue;
        role: string;
        autofocus: boolean;
        eager: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        noDataText: string;
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        tile: boolean;
        closeText: string;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        itemChildren: import('vuetify/lib/util').SelectItemKey;
        clearable: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
        chips: boolean;
        closableChips: boolean;
        openText: string;
        hideNoData: boolean;
        hideSelected: boolean;
        menuIcon: import('vuetify/lib/composables/icons').IconValue;
        openOnClear: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        prefix?: string | undefined;
        class?: any;
        theme?: string | undefined;
        placeholder?: string | undefined;
        counter?: string | number | boolean | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        valueComparator?: typeof import('vuetify/lib/util').deepEqual | undefined;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
        suffix?: string | undefined;
        counterValue?: number | ((value: any) => number) | undefined;
        modelModifiers?: Record<string, boolean> | undefined;
        listProps?: (Partial<{
            variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
            nav: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            tag: string | import('vuetify/lib/util').JSXComponent;
            lines: false | "one" | "two" | "three";
            mandatory: boolean;
            returnObject: boolean;
            selectStrategy: import('vuetify/lib/composables/nested/nested').SelectStrategyProp;
            density: import('vuetify/lib/composables/density').Density;
            rounded: string | number | boolean;
            tile: boolean;
            slim: boolean;
            activatable: boolean;
            selectable: boolean;
            openStrategy: import('vuetify/lib/composables/nested/nested').OpenStrategyProp;
            itemType: string;
        }> & Omit<{
            variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
            nav: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            tag: string | import('vuetify/lib/util').JSXComponent;
            lines: false | "one" | "two" | "three";
            mandatory: boolean;
            returnObject: boolean;
            selectStrategy: import('vuetify/lib/composables/nested/nested').SelectStrategyProp;
            density: import('vuetify/lib/composables/density').Density;
            tile: boolean;
            slim: boolean;
            activatable: boolean;
            selectable: boolean;
            openStrategy: import('vuetify/lib/composables/nested/nested').OpenStrategyProp;
            itemType: string;
            height?: string | number | undefined;
            width?: string | number | undefined;
            border?: string | number | boolean | undefined;
            color?: string | undefined;
            maxHeight?: string | number | undefined;
            maxWidth?: string | number | undefined;
            minHeight?: string | number | undefined;
            minWidth?: string | number | undefined;
            activated?: any;
            class?: any;
            theme?: string | undefined;
            elevation?: string | number | undefined;
            valueComparator?: typeof import('vuetify/lib/util').deepEqual | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            activeColor?: string | undefined;
            activeClass?: string | undefined;
            activeStrategy?: import('vuetify/lib/composables/nested/nested').ActiveStrategyProp | undefined;
            collapseIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            expandIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onUpdate:activated"?: ((value: unknown) => any) | undefined;
            "onClick:activate"?: ((value: {
                id: unknown;
                value: boolean;
                path: unknown[];
            }) => any) | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
            items?: readonly any[] | undefined;
            itemTitle?: import('vuetify/lib/util').SelectItemKey<any>;
            itemValue?: import('vuetify/lib/util').SelectItemKey<any>;
            itemChildren?: import('vuetify/lib/util').SelectItemKey<any>;
            itemProps?: import('vuetify/lib/util').SelectItemKey<any>;
            selected?: unknown;
            "onUpdate:selected"?: ((value: unknown) => void) | undefined;
            "onClick:open"?: (value: {
                id: unknown;
                value: boolean;
                path: unknown[];
            }) => void;
            "onClick:select"?: (value: {
                id: unknown;
                value: boolean;
                path: unknown[];
            }) => void;
            opened?: unknown;
            "onUpdate:opened"?: ((value: unknown) => void) | undefined;
        } & {
            $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
                title?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot & {
                    item: any;
                }) => import('vue').VNodeChild) | undefined;
                append?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot & {
                    item: any;
                }) => import('vue').VNodeChild) | undefined;
                prepend?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot & {
                    item: any;
                }) => import('vue').VNodeChild) | undefined;
                subtitle?: ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot & {
                    item: any;
                }) => import('vue').VNodeChild) | undefined;
                default?: (() => import('vue').VNodeChild) | undefined;
                item?: ((arg: {
                    props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                }) => import('vue').VNodeChild) | undefined;
                divider?: ((arg: {
                    props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                }) => import('vue').VNodeChild) | undefined;
                subheader?: ((arg: {
                    props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                }) => import('vue').VNodeChild) | undefined;
                header?: ((arg: {
                    props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                }) => import('vue').VNodeChild) | undefined;
            };
            "v-slots"?: {
                title?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot & {
                    item: any;
                }) => import('vue').VNodeChild) | undefined;
                append?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot & {
                    item: any;
                }) => import('vue').VNodeChild) | undefined;
                prepend?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot & {
                    item: any;
                }) => import('vue').VNodeChild) | undefined;
                subtitle?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot & {
                    item: any;
                }) => import('vue').VNodeChild) | undefined;
                default?: false | (() => import('vue').VNodeChild) | undefined;
                item?: false | ((arg: {
                    props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                }) => import('vue').VNodeChild) | undefined;
                divider?: false | ((arg: {
                    props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                }) => import('vue').VNodeChild) | undefined;
                subheader?: false | ((arg: {
                    props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                }) => import('vue').VNodeChild) | undefined;
                header?: false | ((arg: {
                    props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
                }) => import('vue').VNodeChild) | undefined;
            } | undefined;
        } & {
            "v-slot:title"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemTitleSlot & {
                item: any;
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot & {
                item: any;
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSlot & {
                item: any;
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:subtitle"?: false | ((arg: import('vuetify/lib/components/VList/VListItem').ListItemSubtitleSlot & {
                item: any;
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
            "v-slot:item"?: false | ((arg: {
                props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:divider"?: false | ((arg: {
                props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:subheader"?: false | ((arg: {
                props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:header"?: false | ((arg: {
                props: import('vuetify/lib/components/VList/VList').InternalListItem["props"];
            }) => import('vue').VNodeChild) | undefined;
        }) | undefined;
        menuProps?: (Partial<{
            location: import('vuetify/lib/util').Anchor | undefined;
            origin: "auto" | import('vuetify/lib/util').Anchor | "overlap";
            transition: string | boolean | (import('vue').TransitionProps & {
                component?: import('vue').Component;
            }) | {
                component: {
                    new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<{} & {
                        target?: HTMLElement | [x: number, y: number] | undefined;
                    } & {
                        $children?: import('vue').VNodeChild | {
                            default?: (() => import('vue').VNodeChild) | undefined;
                        } | (() => import('vue').VNodeChild);
                        "v-slots"?: {
                            default?: false | (() => import('vue').VNodeChild) | undefined;
                        } | undefined;
                    } & {
                        "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                    }, () => JSX.Element, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Record<string, any>, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {}, true, {}, import('vue').SlotsType<Partial<{
                        default: () => import('vue').VNode[];
                    }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
                        P: {};
                        B: {};
                        D: {};
                        C: {};
                        M: {};
                        Defaults: {};
                    }, {} & {
                        target?: HTMLElement | [x: number, y: number] | undefined;
                    } & {
                        $children?: import('vue').VNodeChild | {
                            default?: (() => import('vue').VNodeChild) | undefined;
                        } | (() => import('vue').VNodeChild);
                        "v-slots"?: {
                            default?: false | (() => import('vue').VNodeChild) | undefined;
                        } | undefined;
                    } & {
                        "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                    }, () => JSX.Element, {}, {}, {}, {}>;
                    __isFragment?: never;
                    __isTeleport?: never;
                    __isSuspense?: never;
                } & import('vue').ComponentOptionsBase<{} & {
                    target?: HTMLElement | [x: number, y: number] | undefined;
                } & {
                    $children?: import('vue').VNodeChild | {
                        default?: (() => import('vue').VNodeChild) | undefined;
                    } | (() => import('vue').VNodeChild);
                    "v-slots"?: {
                        default?: false | (() => import('vue').VNodeChild) | undefined;
                    } | undefined;
                } & {
                    "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                }, () => JSX.Element, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import('vue').SlotsType<Partial<{
                    default: () => import('vue').VNode[];
                }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vuetify/lib/util').FilterPropsOptions<{
                    target: PropType<HTMLElement | [x: number, y: number]>;
                }, import('vue').ExtractPropTypes<{
                    target: PropType<HTMLElement | [x: number, y: number]>;
                }>>;
            } | null;
            zIndex: string | number;
            style: import('vue').StyleValue;
            eager: boolean;
            disabled: boolean;
            persistent: boolean;
            modelValue: boolean;
            locationStrategy: "connected" | "static" | import('vuetify/lib/types').LocationStrategyFunction;
            scrollStrategy: "none" | "block" | "close" | import('vuetify/lib/types').ScrollStrategyFunction | "reposition";
            closeDelay: string | number;
            openDelay: string | number;
            activatorProps: Record<string, any>;
            openOnClick: boolean;
            openOnHover: boolean;
            openOnFocus: boolean;
            closeOnContentClick: boolean;
            closeOnBack: boolean;
            contained: boolean;
            noClickAnimation: boolean;
            scrim: string | boolean;
            submenu: boolean;
        }> & Omit<{
            location: import('vuetify/lib/util').Anchor | undefined;
            origin: "auto" | import('vuetify/lib/util').Anchor | "overlap";
            transition: string | boolean | (import('vue').TransitionProps & {
                component?: import('vue').Component;
            }) | {
                component: {
                    new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<{} & {
                        target?: HTMLElement | [x: number, y: number] | undefined;
                    } & {
                        $children?: import('vue').VNodeChild | {
                            default?: (() => import('vue').VNodeChild) | undefined;
                        } | (() => import('vue').VNodeChild);
                        "v-slots"?: {
                            default?: false | (() => import('vue').VNodeChild) | undefined;
                        } | undefined;
                    } & {
                        "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                    }, () => JSX.Element, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Record<string, any>, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {}, true, {}, import('vue').SlotsType<Partial<{
                        default: () => import('vue').VNode[];
                    }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
                        P: {};
                        B: {};
                        D: {};
                        C: {};
                        M: {};
                        Defaults: {};
                    }, {} & {
                        target?: HTMLElement | [x: number, y: number] | undefined;
                    } & {
                        $children?: import('vue').VNodeChild | {
                            default?: (() => import('vue').VNodeChild) | undefined;
                        } | (() => import('vue').VNodeChild);
                        "v-slots"?: {
                            default?: false | (() => import('vue').VNodeChild) | undefined;
                        } | undefined;
                    } & {
                        "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                    }, () => JSX.Element, {}, {}, {}, {}>;
                    __isFragment?: never;
                    __isTeleport?: never;
                    __isSuspense?: never;
                } & import('vue').ComponentOptionsBase<{} & {
                    target?: HTMLElement | [x: number, y: number] | undefined;
                } & {
                    $children?: import('vue').VNodeChild | {
                        default?: (() => import('vue').VNodeChild) | undefined;
                    } | (() => import('vue').VNodeChild);
                    "v-slots"?: {
                        default?: false | (() => import('vue').VNodeChild) | undefined;
                    } | undefined;
                } & {
                    "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
                }, () => JSX.Element, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Record<string, any>, string, {}, {}, string, import('vue').SlotsType<Partial<{
                    default: () => import('vue').VNode[];
                }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vuetify/lib/util').FilterPropsOptions<{
                    target: PropType<HTMLElement | [x: number, y: number]>;
                }, import('vue').ExtractPropTypes<{
                    target: PropType<HTMLElement | [x: number, y: number]>;
                }>>;
            } | null;
            zIndex: string | number;
            style: import('vue').StyleValue;
            eager: boolean;
            disabled: boolean;
            persistent: boolean;
            modelValue: boolean;
            locationStrategy: "connected" | "static" | import('vuetify/lib/types').LocationStrategyFunction;
            scrollStrategy: "none" | "block" | "close" | import('vuetify/lib/types').ScrollStrategyFunction | "reposition";
            closeDelay: string | number;
            openDelay: string | number;
            activatorProps: Record<string, any>;
            openOnHover: boolean;
            closeOnContentClick: boolean;
            closeOnBack: boolean;
            contained: boolean;
            noClickAnimation: boolean;
            scrim: string | boolean;
            submenu: boolean;
            offset?: string | number | number[] | undefined;
            id?: string | undefined;
            height?: string | number | undefined;
            width?: string | number | undefined;
            maxHeight?: string | number | undefined;
            maxWidth?: string | number | undefined;
            minHeight?: string | number | undefined;
            minWidth?: string | number | undefined;
            opacity?: string | number | undefined;
            target?: Element | "cursor" | "parent" | (string & {}) | import('vue').ComponentPublicInstance | [x: number, y: number] | undefined;
            class?: any;
            theme?: string | undefined;
            activator?: Element | "parent" | (string & {}) | import('vue').ComponentPublicInstance | undefined;
            openOnClick?: boolean | undefined;
            openOnFocus?: boolean | undefined;
            contentClass?: any;
            contentProps?: any;
            attach?: string | boolean | Element | undefined;
            $children?: import('vue').VNodeChild | {
                default?: ((arg: {
                    isActive: import('vue').Ref<boolean>;
                }) => import('vue').VNodeChild) | undefined;
                activator?: ((arg: {
                    isActive: boolean;
                    props: Record<string, any>;
                    targetRef: import('vuetify/lib/util').TemplateRef;
                }) => import('vue').VNodeChild) | undefined;
            } | ((arg: {
                isActive: import('vue').Ref<boolean>;
            }) => import('vue').VNodeChild);
            "v-slots"?: {
                default?: false | ((arg: {
                    isActive: import('vue').Ref<boolean>;
                }) => import('vue').VNodeChild) | undefined;
                activator?: false | ((arg: {
                    isActive: boolean;
                    props: Record<string, any>;
                    targetRef: import('vuetify/lib/util').TemplateRef;
                }) => import('vue').VNodeChild) | undefined;
            } | undefined;
            "v-slot:default"?: false | ((arg: {
                isActive: import('vue').Ref<boolean>;
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:activator"?: false | ((arg: {
                isActive: boolean;
                props: Record<string, any>;
                targetRef: import('vuetify/lib/util').TemplateRef;
            }) => import('vue').VNodeChild) | undefined;
            "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "submenu">) | undefined;
        itemColor?: string | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        "onUpdate:menu"?: ((ue: boolean) => any) | undefined;
    }, {
        isFocused: import('vue').ShallowRef<boolean, boolean>;
        menu: import('vue').WritableComputedRef<boolean, boolean>;
        select: (item: import('vuetify/lib/composables/list-items').ListItem, set?: boolean | null) => void;
    } & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            type: string;
            error: boolean;
            active: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            autofocus: boolean;
            disabled: boolean;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            persistentPlaceholder: boolean;
            persistentCounter: boolean;
        }> & Omit<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            type: string;
            error: boolean;
            active: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            autofocus: boolean;
            disabled: boolean;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            persistentPlaceholder: boolean;
            persistentCounter: boolean;
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            prefix?: string | undefined;
            role?: string | undefined;
            class?: any;
            theme?: string | undefined;
            placeholder?: string | undefined;
            counter?: string | number | boolean | undefined;
            "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
            modelValue?: any;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
            suffix?: string | undefined;
            counterValue?: number | ((value: any) => number) | undefined;
            modelModifiers?: Record<string, boolean> | undefined;
            $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
                message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                default?: (() => import('vue').VNodeChild) | undefined;
                counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
            };
            "v-slots"?: {
                message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                default?: false | (() => import('vue').VNodeChild) | undefined;
                counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
            } | undefined;
            "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
            "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
            "onUpdate:modelValue"?: ((val: string) => any) | undefined;
            "onClick:control"?: ((e: MouseEvent) => any) | undefined;
            "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            default?: (() => import('vue').VNode[]) | undefined;
            counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: ((event: "update:modelValue", val: string) => void) & ((event: "update:focused", focused: boolean) => void) & ((event: "click:control", e: MouseEvent) => void) & ((event: "mousedown:control", e: MouseEvent) => void);
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            type: string;
            error: boolean;
            active: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            autofocus: boolean;
            disabled: boolean;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            persistentPlaceholder: boolean;
            persistentCounter: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            prefix?: string | undefined;
            role?: string | undefined;
            class?: any;
            theme?: string | undefined;
            placeholder?: string | undefined;
            counter?: string | number | boolean | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            modelValue?: any;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
            suffix?: string | undefined;
            counterValue?: number | ((value: any) => number) | undefined;
            modelModifiers?: Record<string, boolean> | undefined;
        } & {
            $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
                message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                default?: (() => import('vue').VNodeChild) | undefined;
                counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
            };
            "v-slots"?: {
                message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                default?: false | (() => import('vue').VNodeChild) | undefined;
                counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
            } | undefined;
        } & {
            "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
            "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
            "onUpdate:modelValue"?: ((val: string) => any) | undefined;
            "onClick:control"?: ((e: MouseEvent) => any) | undefined;
            "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
        }, HTMLInputElement & Omit<Omit<{
            $: import('vue').ComponentInternalInstance;
            $data: {};
            $props: Partial<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            }> & Omit<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                baseColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
            } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
            $attrs: {
                [x: string]: unknown;
            };
            $refs: {
                [x: string]: unknown;
            };
            $slots: Readonly<{
                default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
            }>;
            $root: import('vue').ComponentPublicInstance | null;
            $parent: import('vue').ComponentPublicInstance | null;
            $host: Element | null;
            $emit: (event: string, ...args: any[]) => void;
            $el: any;
            $options: import('vue').ComponentOptionsBase<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            } & {
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                baseColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
            } & {}, {
                reset: () => Promise<void>;
                resetValidation: () => Promise<void>;
                validate: (silent?: boolean) => Promise<string[]>;
                isValid: import('vue').ComputedRef<boolean | null>;
                errorMessages: import('vue').ComputedRef<string[]>;
            }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                "update:modelValue": (value: any) => true;
            }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            }, {}, string, import('vue').SlotsType<Partial<{
                default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
            }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                beforeCreate?: (() => void) | (() => void)[];
                created?: (() => void) | (() => void)[];
                beforeMount?: (() => void) | (() => void)[];
                mounted?: (() => void) | (() => void)[];
                beforeUpdate?: (() => void) | (() => void)[];
                updated?: (() => void) | (() => void)[];
                activated?: (() => void) | (() => void)[];
                deactivated?: (() => void) | (() => void)[];
                beforeDestroy?: (() => void) | (() => void)[];
                beforeUnmount?: (() => void) | (() => void)[];
                destroyed?: (() => void) | (() => void)[];
                unmounted?: (() => void) | (() => void)[];
                renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
            };
            $forceUpdate: () => void;
            $nextTick: typeof nextTick;
            $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
        } & Readonly<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }> & Omit<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import('vue').ShallowUnwrapRef<{
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
            modelValue?: unknown;
            "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
        }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
            $: import('vue').ComponentInternalInstance;
            $data: {};
            $props: Partial<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            }> & Omit<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
                id?: string | undefined;
                color?: string | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
            } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
            $attrs: {
                [x: string]: unknown;
            };
            $refs: {
                [x: string]: unknown;
            };
            $slots: Readonly<{
                clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNode[]) | undefined;
                "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNode[]) | undefined;
                loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
                default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
            }>;
            $root: import('vue').ComponentPublicInstance | null;
            $parent: import('vue').ComponentPublicInstance | null;
            $host: Element | null;
            $emit: (event: "update:focused", focused: boolean) => void;
            $el: any;
            $options: import('vue').ComponentOptionsBase<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            } & {
                id?: string | undefined;
                color?: string | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
            } & {
                "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
            }, {
                controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                fieldIconColor: import('vue').ComputedRef<string | undefined>;
            }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                "update:focused": (focused: boolean) => true;
                "update:modelValue": (value: any) => true;
            }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            }, {}, string, import('vue').SlotsType<Partial<{
                clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNode[];
                "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNode[];
                loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
                default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
            }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                beforeCreate?: (() => void) | (() => void)[];
                created?: (() => void) | (() => void)[];
                beforeMount?: (() => void) | (() => void)[];
                mounted?: (() => void) | (() => void)[];
                beforeUpdate?: (() => void) | (() => void)[];
                updated?: (() => void) | (() => void)[];
                activated?: (() => void) | (() => void)[];
                deactivated?: (() => void) | (() => void)[];
                beforeDestroy?: (() => void) | (() => void)[];
                beforeUnmount?: (() => void) | (() => void)[];
                destroyed?: (() => void) | (() => void)[];
                unmounted?: (() => void) | (() => void)[];
                renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
            };
            $forceUpdate: () => void;
            $nextTick: typeof nextTick;
            $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
        } & Readonly<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }> & Omit<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        } & {
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
            modelValue?: unknown;
            "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
        }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
            _allExposed: {
                reset: () => Promise<void>;
                resetValidation: () => Promise<void>;
                validate: (silent?: boolean) => Promise<string[]>;
                isValid: import('vue').ComputedRef<boolean | null>;
                errorMessages: import('vue').ComputedRef<string[]>;
            } | {
                controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                fieldIconColor: import('vue').ComputedRef<string | undefined>;
            } | {};
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
            "click:control": (e: MouseEvent) => true;
            "mousedown:control": (e: MouseEvent) => true;
            "update:focused": (focused: boolean) => true;
            "update:modelValue": (val: string) => true;
        }, string, {
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            type: string;
            error: boolean;
            active: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            autofocus: boolean;
            disabled: boolean;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            persistentPlaceholder: boolean;
            persistentCounter: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
            clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[];
            details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[];
            append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
            "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            default: () => import('vue').VNode[];
            counter: (arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    }> & Omit<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        prefix?: string | undefined;
        role?: string | undefined;
        class?: any;
        theme?: string | undefined;
        placeholder?: string | undefined;
        counter?: string | number | boolean | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        modelValue?: any;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
        suffix?: string | undefined;
        counterValue?: number | ((value: any) => number) | undefined;
        modelModifiers?: Record<string, boolean> | undefined;
    } & {
        $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: (() => import('vue').VNodeChild) | undefined;
            counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        };
        'v-slots'?: {
            message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: false | (() => import('vue').VNodeChild) | undefined;
            counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        } | undefined;
    } & {
        "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            label: string | undefined;
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
        "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        "onUpdate:modelValue"?: ((val: string) => any) | undefined;
        "onClick:control"?: ((e: MouseEvent) => any) | undefined;
        "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
    }, "reverse" | "flat" | "form" | "select" | "slot" | "style" | "title" | "blur" | "click" | "error" | "focus" | "reset" | "scroll" | "role" | "required" | "type" | "name" | "autocomplete" | "ariaLabel" | "placeholder" | "persistentPlaceholder" | "persistentHint" | "id" | "variant" | "tile" | "density" | "singleLine" | "direction" | "disabled" | "readonly" | "rounded" | "height" | "width" | "active" | "value" | "normalize" | "max" | "matches" | "remove" | "min" | "translate" | "contains" | "hidden" | "dir" | "animate" | "pattern" | "checkValidity" | "reportValidity" | "addEventListener" | "removeEventListener" | "accessKey" | "accessKeyLabel" | "autocapitalize" | "draggable" | "inert" | "innerText" | "lang" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "spellcheck" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "innerHTML" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "part" | "prefix" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttribute" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "_clickOutside" | "_onResize" | "_ripple" | "_observe" | "_mutate" | "_onScroll" | "_touchHandlers" | "_transitionInitialStyles" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "textContent" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColIndexText" | "ariaColSpan" | "ariaCurrent" | "ariaDescription" | "ariaDisabled" | "ariaExpanded" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "getAnimations" | "after" | "before" | "replaceWith" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "children" | "firstElementChild" | "lastElementChild" | "append" | "prepend" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "enterKeyHint" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclick" | "onclose" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onkeydown" | "onkeypress" | "onkeyup" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "autofocus" | "dataset" | "nonce" | "tabIndex" | "labels" | "multiple" | "size" | "validationMessage" | "validity" | "willValidate" | "setCustomValidity" | "showPicker" | "maxLength" | "list" | "accept" | "readOnly" | "_" | "alt" | "step" | "src" | "capture" | "checked" | "indeterminate" | "align" | "messages" | "rules" | "minLength" | "isValid" | "focused" | "errorMessages" | "maxErrors" | "validate" | "resetValidation" | "_allExposed" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "clearable" | "dirty" | "persistentClear" | "controlRef" | "fieldIconColor" | "persistentCounter" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "selectionDirection" | "selectionEnd" | "selectionStart" | "useMap" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "setRangeText" | "setSelectionRange" | "stepDown" | "stepUp" | "popoverTargetAction" | "popoverTargetElement"> & import('vue').ShallowUnwrapRef<HTMLInputElement & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }> & Omit<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: string, ...args: any[]) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & {}, {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    }> & Omit<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        baseColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
    }, "style" | "error" | "reset" | "persistentHint" | "density" | "direction" | "disabled" | "readonly" | "messages" | "rules" | "isValid" | "focused" | "errorMessages" | "maxErrors" | "validate" | "resetValidation" | "centerAffix" | "glow" | "hideSpinButtons"> & import('vue').ShallowUnwrapRef<{
        reset: () => Promise<void>;
        resetValidation: () => Promise<void>;
        validate: (silent?: boolean) => Promise<string[]>;
        isValid: import('vue').ComputedRef<boolean | null>;
        errorMessages: import('vue').ComputedRef<string[]>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "label" | "style" | "error" | "class" | "name" | keyof import('vue').VNodeProps | "hint" | "persistentHint" | "id" | "density" | "hideDetails" | "direction" | "color" | "theme" | "disabled" | "readonly" | "maxWidth" | "minWidth" | "width" | "appendIcon" | "baseColor" | "prependIcon" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "centerAffix" | "glow" | "hideSpinButtons" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "$children" | "v-slots" | "v-slot:message" | "v-slot:details" | "v-slot:append" | "v-slot:prepend" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }> & Omit<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
            default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: "update:focused", focused: boolean) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        } & {
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        }, {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:focused": (focused: boolean) => true;
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[];
            "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[];
            loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
            default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    }> & Omit<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    } & {
        id?: string | undefined;
        color?: string | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
    }, "reverse" | "flat" | "style" | "error" | "variant" | "tile" | "singleLine" | "disabled" | "rounded" | "active" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
        controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
        fieldIconColor: import('vue').ComputedRef<string | undefined>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "reverse" | "flat" | "label" | "style" | "error" | "class" | keyof import('vue').VNodeProps | "id" | "variant" | "tile" | "singleLine" | "color" | "bgColor" | "theme" | "disabled" | "rounded" | "active" | "baseColor" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "loading" | "onUpdate:focused" | "modelValue" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "$children" | "v-slots" | "v-slot:clear" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & {
        _allExposed: {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        } | {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        } | {};
    }> & import('vue').ComponentCustomProperties, "reverse" | "flat" | "label" | "style" | "error" | "role" | "class" | "type" | "name" | keyof import('vue').VNodeProps | "placeholder" | "hint" | "persistentPlaceholder" | "persistentHint" | "id" | "variant" | "tile" | "density" | "singleLine" | "hideDetails" | "direction" | "color" | "bgColor" | "theme" | "disabled" | "readonly" | "rounded" | "maxWidth" | "minWidth" | "width" | "active" | "appendIcon" | "baseColor" | "prependIcon" | "prefix" | "autofocus" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "clearable" | "dirty" | "persistentClear" | "persistentCounter" | "loading" | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "suffix" | "counterValue" | "modelModifiers" | "$children" | "v-slots" | "v-slot:message" | "v-slot:clear" | "v-slot:details" | "v-slot:label" | "v-slot:append" | "v-slot:prepend" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:default" | "v-slot:counter" | "onUpdate:modelValue" | "onClick:control" | "onMousedown:control">, `$${any}`> & {
        _allExposed: (HTMLInputElement & Omit<Omit<{
            $: import('vue').ComponentInternalInstance;
            $data: {};
            $props: Partial<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            }> & Omit<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                baseColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
            } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
            $attrs: {
                [x: string]: unknown;
            };
            $refs: {
                [x: string]: unknown;
            };
            $slots: Readonly<{
                default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
            }>;
            $root: import('vue').ComponentPublicInstance | null;
            $parent: import('vue').ComponentPublicInstance | null;
            $host: Element | null;
            $emit: (event: string, ...args: any[]) => void;
            $el: any;
            $options: import('vue').ComponentOptionsBase<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            } & {
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                baseColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
            } & {}, {
                reset: () => Promise<void>;
                resetValidation: () => Promise<void>;
                validate: (silent?: boolean) => Promise<string[]>;
                isValid: import('vue').ComputedRef<boolean | null>;
                errorMessages: import('vue').ComputedRef<string[]>;
            }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                "update:modelValue": (value: any) => true;
            }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            }, {}, string, import('vue').SlotsType<Partial<{
                default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
            }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                beforeCreate?: (() => void) | (() => void)[];
                created?: (() => void) | (() => void)[];
                beforeMount?: (() => void) | (() => void)[];
                mounted?: (() => void) | (() => void)[];
                beforeUpdate?: (() => void) | (() => void)[];
                updated?: (() => void) | (() => void)[];
                activated?: (() => void) | (() => void)[];
                deactivated?: (() => void) | (() => void)[];
                beforeDestroy?: (() => void) | (() => void)[];
                beforeUnmount?: (() => void) | (() => void)[];
                destroyed?: (() => void) | (() => void)[];
                unmounted?: (() => void) | (() => void)[];
                renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
            };
            $forceUpdate: () => void;
            $nextTick: typeof nextTick;
            $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
        } & Readonly<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }> & Omit<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import('vue').ShallowUnwrapRef<{
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
            modelValue?: unknown;
            "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
        }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
            $: import('vue').ComponentInternalInstance;
            $data: {};
            $props: Partial<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            }> & Omit<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
                id?: string | undefined;
                color?: string | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
            } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
            $attrs: {
                [x: string]: unknown;
            };
            $refs: {
                [x: string]: unknown;
            };
            $slots: Readonly<{
                clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNode[]) | undefined;
                "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNode[]) | undefined;
                loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
                default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
            }>;
            $root: import('vue').ComponentPublicInstance | null;
            $parent: import('vue').ComponentPublicInstance | null;
            $host: Element | null;
            $emit: (event: "update:focused", focused: boolean) => void;
            $el: any;
            $options: import('vue').ComponentOptionsBase<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            } & {
                id?: string | undefined;
                color?: string | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
            } & {
                "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
            }, {
                controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                fieldIconColor: import('vue').ComputedRef<string | undefined>;
            }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                "update:focused": (focused: boolean) => true;
                "update:modelValue": (value: any) => true;
            }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            }, {}, string, import('vue').SlotsType<Partial<{
                clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNode[];
                "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNode[];
                loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
                default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
            }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                beforeCreate?: (() => void) | (() => void)[];
                created?: (() => void) | (() => void)[];
                beforeMount?: (() => void) | (() => void)[];
                mounted?: (() => void) | (() => void)[];
                beforeUpdate?: (() => void) | (() => void)[];
                updated?: (() => void) | (() => void)[];
                activated?: (() => void) | (() => void)[];
                deactivated?: (() => void) | (() => void)[];
                beforeDestroy?: (() => void) | (() => void)[];
                beforeUnmount?: (() => void) | (() => void)[];
                destroyed?: (() => void) | (() => void)[];
                unmounted?: (() => void) | (() => void)[];
                renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
            };
            $forceUpdate: () => void;
            $nextTick: typeof nextTick;
            $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
        } & Readonly<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }> & Omit<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        } & {
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
            modelValue?: unknown;
            "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
        }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
            _allExposed: {
                reset: () => Promise<void>;
                resetValidation: () => Promise<void>;
                validate: (silent?: boolean) => Promise<string[]>;
                isValid: import('vue').ComputedRef<boolean | null>;
                errorMessages: import('vue').ComputedRef<string[]>;
            } | {
                controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                fieldIconColor: import('vue').ComputedRef<string | undefined>;
            } | {};
        }) | {
            isFocused: import('vue').ShallowRef<boolean, boolean>;
            menu: import('vue').WritableComputedRef<boolean, boolean>;
            select: (item: import('vuetify/lib/composables/list-items').ListItem, set?: boolean | null) => void;
        };
    }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
        'update:focused': (focused: boolean) => true;
        'update:modelValue': (value: any) => true;
        'update:menu': (ue: boolean) => true;
    }, "multiple" | "modelValue" | "$children" | "v-slots" | "v-slot:message" | "v-slot:clear" | "v-slot:details" | "v-slot:label" | "v-slot:append" | "v-slot:prepend" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slot:append-inner" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:item" | "itemTitle" | "itemProps" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        transition: string | boolean | (import('vue').TransitionProps & {
            component?: import('vue').Component;
        }) | {
            component: import('vue').Component;
        } | null;
        menu: boolean;
        style: import('vue').StyleValue;
        role: string;
        autofocus: boolean;
        eager: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        noDataText: string;
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        rounded: string | number | boolean;
        tile: boolean;
        closeText: string;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        itemChildren: import('vuetify/lib/util').SelectItemKey;
        clearable: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
        chips: boolean;
        closableChips: boolean;
        openText: string;
        hideNoData: boolean;
        hideSelected: boolean;
        menuIcon: import('vuetify/lib/composables/icons').IconValue;
        openOnClear: boolean;
    }, {}, string, import('vue').SlotsType<Partial<{
        message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
        clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            props: Record<string, any>;
        }) => import('vue').VNode[];
        details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
        label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            label: string | undefined;
            props: Record<string, any>;
        }) => import('vue').VNode[];
        append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
        prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
        loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
        'prepend-inner': (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
        'append-inner': (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
        item: (arg: {
            item: import('vuetify/lib/composables/list-items').ListItem<unknown>;
            index: number;
            props: Record<string, unknown>;
        }) => import('vue').VNode[];
        chip: (arg: {
            item: import('vuetify/lib/composables/list-items').ListItem<unknown>;
            index: number;
            props: Record<string, unknown>;
        }) => import('vue').VNode[];
        selection: (arg: {
            item: import('vuetify/lib/composables/list-items').ListItem<unknown>;
            index: number;
        }) => import('vue').VNode[];
        'prepend-item': () => import('vue').VNode[];
        'append-item': () => import('vue').VNode[];
        'no-data': () => import('vue').VNode[];
    }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new <T extends readonly any[], Item = import('vuetify/lib/components/VSelect/VSelect').ItemType<T>, ReturnObject extends boolean = false, Multiple extends boolean = false, V extends import('vuetify/lib/components/VSelect/VSelect').Value<Item, ReturnObject, Multiple> = import('vuetify/lib/components/VSelect/VSelect').Value<Item, ReturnObject, Multiple>>(props: {
        items?: T;
        itemTitle?: import('vuetify/lib/util').SelectItemKey<import('vuetify/lib/components/VSelect/VSelect').ItemType<T>>;
        itemValue?: import('vuetify/lib/util').SelectItemKey<import('vuetify/lib/components/VSelect/VSelect').ItemType<T>>;
        itemProps?: import('vuetify/lib/util').SelectItemKey<import('vuetify/lib/components/VSelect/VSelect').ItemType<T>>;
        returnObject?: ReturnObject;
        multiple?: Multiple;
        modelValue?: V | null;
        "onUpdate:modelValue"?: (value: V) => void;
    }, slots: Omit<import('vuetify/lib/components/VInput/VInput').VInputSlots & import('vuetify/lib/components/VField/VField').VFieldSlots, "default"> & {
        item: {
            item: import('vuetify/lib/composables/list-items').ListItem<Item>;
            index: number;
            props: Record<string, unknown>;
        };
        chip: {
            item: import('vuetify/lib/composables/list-items').ListItem<Item>;
            index: number;
            props: Record<string, unknown>;
        };
        selection: {
            item: import('vuetify/lib/composables/list-items').ListItem<Item>;
            index: number;
        };
        "prepend-item": never;
        "append-item": never;
        "no-data": never;
    }) => import('vuetify/lib/util').GenericProps<typeof props, typeof slots>) & import('vuetify/lib/util').FilterPropsOptions<{
        transition: {
            type: PropType<string | boolean | (import('vue').TransitionProps & {
                component?: import('vue').Component;
            }) | {
                component: import('vue').Component;
            } | null>;
            default: NonNullable<string | boolean | (import('vue').TransitionProps & {
                component?: import('vue').Component;
            }) | null> | {
                component: import('vue').Component;
            };
        };
        flat: BooleanConstructor;
        reverse: BooleanConstructor;
        variant: {
            type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
            default: string;
            validator: (v: any) => boolean;
        };
        name: StringConstructor;
        type: {
            type: StringConstructor;
            default: string;
        };
        error: BooleanConstructor;
        id: StringConstructor;
        width: (StringConstructor | NumberConstructor)[];
        active: BooleanConstructor;
        color: StringConstructor;
        direction: {
            type: PropType<"horizontal" | "vertical">;
            default: string;
            validator: (v: any) => boolean;
        };
        maxWidth: (StringConstructor | NumberConstructor)[];
        minWidth: (StringConstructor | NumberConstructor)[];
        loading: (StringConstructor | BooleanConstructor)[];
        label: StringConstructor;
        style: {
            type: PropType<import('vue').StyleValue>;
            default: null;
        };
        prefix: StringConstructor;
        role: {
            type: PropType<string>;
            default: string;
        };
        autofocus: BooleanConstructor;
        disabled: {
            type: BooleanConstructor;
            default: null;
        };
        readonly: {
            type: PropType<boolean | null>;
            default: null;
        };
        class: PropType<import('vuetify/lib/composables/component').ClassValue>;
        theme: StringConstructor;
        placeholder: StringConstructor;
        messages: {
            type: PropType<string | readonly string[]>;
            default: () => never[];
        };
        rules: {
            type: PropType<readonly (import('vuetify/lib/types').ValidationRule | import('vuetify/lib/labs/rules').ValidationAlias)[]>;
            default: () => never[];
        };
        counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        focused: BooleanConstructor;
        'onUpdate:focused': PropType<(args_0: boolean) => void>;
        errorMessages: {
            type: PropType<string | readonly string[] | null>;
            default: () => never[];
        };
        maxErrors: {
            type: (StringConstructor | NumberConstructor)[];
            default: number;
        };
        modelValue: {
            type: PropType<any>;
            default: any;
        };
        validateOn: PropType<import('vuetify/lib/composables/validation').ValidationProps["validateOn"]>;
        density: {
            type: PropType<import('vuetify/lib/composables/density').Density>;
            default: string;
            validator: (v: any) => boolean;
        };
        rounded: {
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
            default: undefined;
        };
        tile: BooleanConstructor;
        baseColor: StringConstructor;
        bgColor: StringConstructor;
        prependIcon: PropType<import('vuetify/lib/composables/icons').IconValue>;
        appendIcon: PropType<import('vuetify/lib/composables/icons').IconValue>;
        clearIcon: {
            type: PropType<import('vuetify/lib/composables/icons').IconValue>;
            default: string;
        };
        prependInnerIcon: PropType<import('vuetify/lib/composables/icons').IconValue>;
        'onClick:clear': PropType<(args_0: MouseEvent) => void>;
        'onClick:append': PropType<(args_0: MouseEvent) => void>;
        'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
        'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
        'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
        centerAffix: {
            type: BooleanConstructor;
            default: undefined;
        };
        glow: BooleanConstructor;
        iconColor: (StringConstructor | BooleanConstructor)[];
        hideSpinButtons: BooleanConstructor;
        hint: StringConstructor;
        persistentHint: BooleanConstructor;
        hideDetails: PropType<boolean | "auto">;
        clearable: BooleanConstructor;
        persistentClear: BooleanConstructor;
        singleLine: BooleanConstructor;
        persistentPlaceholder: BooleanConstructor;
        persistentCounter: BooleanConstructor;
        suffix: StringConstructor;
        counterValue: PropType<number | ((value: any) => number)>;
        modelModifiers: PropType<Record<string, boolean>>;
        items: {
            type: PropType<import('vuetify/lib/composables/list-items').ItemProps["items"]>;
            default: () => never[];
        };
        itemTitle: {
            type: PropType<import('vuetify/lib/util').SelectItemKey>;
            default: string;
        };
        itemValue: {
            type: PropType<import('vuetify/lib/util').SelectItemKey>;
            default: string;
        };
        itemChildren: Omit<{
            type: PropType<import('vuetify/lib/util').SelectItemKey>;
            default: string;
        }, "type" | "default"> & {
            type: PropType<import('vuetify/lib/util').SelectItemKey>;
            default: NonNullable<import('vuetify/lib/util').SelectItemKey>;
        };
        itemProps: {
            type: PropType<import('vuetify/lib/util').SelectItemKey>;
            default: string;
        };
        returnObject: BooleanConstructor;
        valueComparator: PropType<typeof import('vuetify/lib/util').deepEqual>;
        chips: BooleanConstructor;
        closableChips: BooleanConstructor;
        closeText: {
            type: StringConstructor;
            default: string;
        };
        openText: {
            type: StringConstructor;
            default: string;
        };
        eager: BooleanConstructor;
        hideNoData: BooleanConstructor;
        hideSelected: BooleanConstructor;
        listProps: {
            type: PropType<import('vuetify/lib/components').VList["$props"]>;
        };
        menu: BooleanConstructor;
        menuIcon: {
            type: PropType<import('vuetify/lib/composables/icons').IconValue>;
            default: string;
        };
        menuProps: {
            type: PropType<import('vuetify/lib/components').VMenu["$props"]>;
        };
        multiple: BooleanConstructor;
        noDataText: {
            type: StringConstructor;
            default: string;
        };
        openOnClear: BooleanConstructor;
        itemColor: StringConstructor;
    }, import('vue').ExtractPropTypes<{
        transition: {
            type: PropType<string | boolean | (import('vue').TransitionProps & {
                component?: import('vue').Component;
            }) | {
                component: import('vue').Component;
            } | null>;
            default: NonNullable<string | boolean | (import('vue').TransitionProps & {
                component?: import('vue').Component;
            }) | null> | {
                component: import('vue').Component;
            };
        };
        flat: BooleanConstructor;
        reverse: BooleanConstructor;
        variant: {
            type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
            default: string;
            validator: (v: any) => boolean;
        };
        name: StringConstructor;
        type: {
            type: StringConstructor;
            default: string;
        };
        error: BooleanConstructor;
        id: StringConstructor;
        width: (StringConstructor | NumberConstructor)[];
        active: BooleanConstructor;
        color: StringConstructor;
        direction: {
            type: PropType<"horizontal" | "vertical">;
            default: string;
            validator: (v: any) => boolean;
        };
        maxWidth: (StringConstructor | NumberConstructor)[];
        minWidth: (StringConstructor | NumberConstructor)[];
        loading: (StringConstructor | BooleanConstructor)[];
        label: StringConstructor;
        style: {
            type: PropType<import('vue').StyleValue>;
            default: null;
        };
        prefix: StringConstructor;
        role: {
            type: PropType<string>;
            default: string;
        };
        autofocus: BooleanConstructor;
        disabled: {
            type: BooleanConstructor;
            default: null;
        };
        readonly: {
            type: PropType<boolean | null>;
            default: null;
        };
        class: PropType<import('vuetify/lib/composables/component').ClassValue>;
        theme: StringConstructor;
        placeholder: StringConstructor;
        messages: {
            type: PropType<string | readonly string[]>;
            default: () => never[];
        };
        rules: {
            type: PropType<readonly (import('vuetify/lib/types').ValidationRule | import('vuetify/lib/labs/rules').ValidationAlias)[]>;
            default: () => never[];
        };
        counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        focused: BooleanConstructor;
        'onUpdate:focused': PropType<(args_0: boolean) => void>;
        errorMessages: {
            type: PropType<string | readonly string[] | null>;
            default: () => never[];
        };
        maxErrors: {
            type: (StringConstructor | NumberConstructor)[];
            default: number;
        };
        modelValue: {
            type: PropType<any>;
            default: any;
        };
        validateOn: PropType<import('vuetify/lib/composables/validation').ValidationProps["validateOn"]>;
        density: {
            type: PropType<import('vuetify/lib/composables/density').Density>;
            default: string;
            validator: (v: any) => boolean;
        };
        rounded: {
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
            default: undefined;
        };
        tile: BooleanConstructor;
        baseColor: StringConstructor;
        bgColor: StringConstructor;
        prependIcon: PropType<import('vuetify/lib/composables/icons').IconValue>;
        appendIcon: PropType<import('vuetify/lib/composables/icons').IconValue>;
        clearIcon: {
            type: PropType<import('vuetify/lib/composables/icons').IconValue>;
            default: string;
        };
        prependInnerIcon: PropType<import('vuetify/lib/composables/icons').IconValue>;
        'onClick:clear': PropType<(args_0: MouseEvent) => void>;
        'onClick:append': PropType<(args_0: MouseEvent) => void>;
        'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
        'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
        'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
        centerAffix: {
            type: BooleanConstructor;
            default: undefined;
        };
        glow: BooleanConstructor;
        iconColor: (StringConstructor | BooleanConstructor)[];
        hideSpinButtons: BooleanConstructor;
        hint: StringConstructor;
        persistentHint: BooleanConstructor;
        hideDetails: PropType<boolean | "auto">;
        clearable: BooleanConstructor;
        persistentClear: BooleanConstructor;
        singleLine: BooleanConstructor;
        persistentPlaceholder: BooleanConstructor;
        persistentCounter: BooleanConstructor;
        suffix: StringConstructor;
        counterValue: PropType<number | ((value: any) => number)>;
        modelModifiers: PropType<Record<string, boolean>>;
        items: {
            type: PropType<import('vuetify/lib/composables/list-items').ItemProps["items"]>;
            default: () => never[];
        };
        itemTitle: {
            type: PropType<import('vuetify/lib/util').SelectItemKey>;
            default: string;
        };
        itemValue: {
            type: PropType<import('vuetify/lib/util').SelectItemKey>;
            default: string;
        };
        itemChildren: Omit<{
            type: PropType<import('vuetify/lib/util').SelectItemKey>;
            default: string;
        }, "type" | "default"> & {
            type: PropType<import('vuetify/lib/util').SelectItemKey>;
            default: NonNullable<import('vuetify/lib/util').SelectItemKey>;
        };
        itemProps: {
            type: PropType<import('vuetify/lib/util').SelectItemKey>;
            default: string;
        };
        returnObject: BooleanConstructor;
        valueComparator: PropType<typeof import('vuetify/lib/util').deepEqual>;
        chips: BooleanConstructor;
        closableChips: BooleanConstructor;
        closeText: {
            type: StringConstructor;
            default: string;
        };
        openText: {
            type: StringConstructor;
            default: string;
        };
        eager: BooleanConstructor;
        hideNoData: BooleanConstructor;
        hideSelected: BooleanConstructor;
        listProps: {
            type: PropType<import('vuetify/lib/components').VList["$props"]>;
        };
        menu: BooleanConstructor;
        menuIcon: {
            type: PropType<import('vuetify/lib/composables/icons').IconValue>;
            default: string;
        };
        menuProps: {
            type: PropType<import('vuetify/lib/components').VMenu["$props"]>;
        };
        multiple: BooleanConstructor;
        noDataText: {
            type: StringConstructor;
            default: string;
        };
        openOnClear: BooleanConstructor;
        itemColor: StringConstructor;
    }>>;
    VTextField: {
        new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            type: string;
            error: boolean;
            active: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            autofocus: boolean;
            disabled: boolean;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            persistentPlaceholder: boolean;
            persistentCounter: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            prefix?: string | undefined;
            role?: string | undefined;
            class?: any;
            theme?: string | undefined;
            placeholder?: string | undefined;
            counter?: string | number | boolean | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            modelValue?: any;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
            suffix?: string | undefined;
            counterValue?: number | ((value: any) => number) | undefined;
            modelModifiers?: Record<string, boolean> | undefined;
        } & {
            $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
                message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                default?: (() => import('vue').VNodeChild) | undefined;
                counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
            };
            "v-slots"?: {
                message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                default?: false | (() => import('vue').VNodeChild) | undefined;
                counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
            } | undefined;
        } & {
            "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
            "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
            "onUpdate:modelValue"?: ((val: string) => any) | undefined;
            "onClick:control"?: ((e: MouseEvent) => any) | undefined;
            "onMousedown:control"
            /** @type { typeof __VLS_ctx.phoneInput } */ ?: ((e: MouseEvent) => any) | undefined;
        }, HTMLInputElement & Omit<Omit<{
            $: import('vue').ComponentInternalInstance;
            $data: {};
            $props: Partial<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            }> & Omit<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                baseColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
            } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
            $attrs: {
                [x: string]: unknown;
            };
            $refs: {
                [x: string]: unknown;
            };
            $slots: Readonly<{
                default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
            }>;
            $root: import('vue').ComponentPublicInstance | null;
            $parent: import('vue').ComponentPublicInstance | null;
            $host: Element | null;
            $emit: (event: string, ...args: any[]) => void;
            $el: any;
            $options: import('vue').ComponentOptionsBase<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            } & {
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                baseColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
            } & {}, {
                reset: () => Promise<void>;
                resetValidation: () => Promise<void>;
                validate: (silent?: boolean) => Promise<string[]>;
                isValid: import('vue').ComputedRef<boolean | null>;
                errorMessages: import('vue').ComputedRef<string[]>;
            }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                "update:modelValue": (value: any) => true;
            }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            }, {}, string, import('vue').SlotsType<Partial<{
                default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
            }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                beforeCreate?: (() => void) | (() => void)[];
                created?: (() => void) | (() => void)[];
                beforeMount?: (() => void) | (() => void)[];
                mounted?: (() => void) | (() => void)[];
                beforeUpdate?: (() => void) | (() => void)[];
                updated?: (() => void) | (() => void)[];
                activated?: (() => void) | (() => void)[];
                deactivated?: (() => void) | (() => void)[];
                beforeDestroy?: (() => void) | (() => void)[];
                beforeUnmount?: (() => void) | (() => void)[];
                destroyed?: (() => void) | (() => void)[];
                unmounted?: (() => void) | (() => void)[];
                renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
            };
            $forceUpdate: () => void;
            $nextTick: typeof nextTick;
            $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
        } & Readonly<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }> & Omit<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import('vue').ShallowUnwrapRef<{
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
            modelValue?: unknown;
            "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
        }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
            $: import('vue').ComponentInternalInstance;
            $data: {};
            $props: Partial<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            }> & Omit<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
                id?: string | undefined;
                color?: string | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
            } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
            $attrs: {
                [x: string]: unknown;
            };
            $refs: {
                [x: string]: unknown;
            };
            $slots: Readonly<{
                clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNode[]) | undefined;
                "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNode[]) | undefined;
                loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
                default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
            }>;
            $root: import('vue').ComponentPublicInstance | null;
            $parent: import('vue').ComponentPublicInstance | null;
            $host: Element | null;
            $emit: (event: "update:focused", focused: boolean) => void;
            $el: any;
            $options: import('vue').ComponentOptionsBase<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            } & {
                id?: string | undefined;
                color?: string | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
            } & {
                "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
            }, {
                controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                fieldIconColor: import('vue').ComputedRef<string | undefined>;
            }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                "update:focused": (focused: boolean) => true;
                "update:modelValue": (value: any) => true;
            }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            }, {}, string, import('vue').SlotsType<Partial<{
                clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNode[];
                "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNode[];
                loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
                default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
            }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                beforeCreate?: (() => void) | (() => void)[];
                created?: (() => void) | (() => void)[];
                beforeMount?: (() => void) | (() => void)[];
                mounted?: (() => void) | (() => void)[];
                beforeUpdate?: (() => void) | (() => void)[];
                updated?: (() => void) | (() => void)[];
                activated?: (() => void) | (() => void)[];
                deactivated?: (() => void) | (() => void)[];
                beforeDestroy?: (() => void) | (() => void)[];
                beforeUnmount?: (() => void) | (() => void)[];
                destroyed?: (() => void) | (() => void)[];
                unmounted?: (() => void) | (() => void)[];
                renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
            };
            $forceUpdate: () => void;
            $nextTick: typeof nextTick;
            $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
        } & Readonly<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }> & Omit<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        } & {
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
            modelValue?: unknown;
            "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
        }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
            _allExposed: {
                reset: () => Promise<void>;
                resetValidation: () => Promise<void>;
                validate: (silent?: boolean) => Promise<string[]>;
                isValid: import('vue').ComputedRef<boolean | null>;
                errorMessages: import('vue').ComputedRef<string[]>;
            } | {
                controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                fieldIconColor: import('vue').ComputedRef<string | undefined>;
            } | {};
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
            "click:control": (e: MouseEvent) => true;
            "mousedown:control": (e: MouseEvent) => true;
            "update:focused": (focused: boolean) => true;
            "update:modelValue": (val: string) => true;
        }, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            type: string;
            error: boolean;
            active: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            autofocus: boolean;
            disabled: boolean;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            persistentPlaceholder: boolean;
            persistentCounter: boolean;
        }, true, {}, import('vue').SlotsType<Partial<{
            message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
            clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[];
            details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[];
            append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
            "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            default: () => import('vue').VNode[];
            counter: (arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
            P: {};
            B: {};
            D: {};
            C: {};
            M: {};
            Defaults: {};
        }, {
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            type: string;
            error: boolean;
            active: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            autofocus: boolean;
            disabled: boolean;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            persistentPlaceholder: boolean;
            persistentCounter: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            prefix?: string | undefined;
            role?: string | undefined;
            class?: any;
            theme?: string | undefined;
            placeholder?: string | undefined;
            counter?: string | number | boolean | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            modelValue?: any;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
            suffix?: string | undefined;
            counterValue?: number | ((value: any) => number) | undefined;
            modelModifiers?: Record<string, boolean> | undefined;
        } & {
            $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
                message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                default?: (() => import('vue').VNodeChild) | undefined;
                counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
            };
            "v-slots"?: {
                message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
                clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNodeChild) | undefined;
                append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
                loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
                "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
                default?: false | (() => import('vue').VNodeChild) | undefined;
                counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
            } | undefined;
        } & {
            "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
            "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
            "onUpdate:modelValue"?: ((val: string) => any) | undefined;
            "onClick:control"?: ((e: MouseEvent) => any) | undefined;
            "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
        }, HTMLInputElement & Omit<Omit<{
            $: import('vue').ComponentInternalInstance;
            $data: {};
            $props: Partial<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            }> & Omit<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                baseColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
            } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
            $attrs: {
                [x: string]: unknown;
            };
            $refs: {
                [x: string]: unknown;
            };
            $slots: Readonly<{
                default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
                message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
            }>;
            $root: import('vue').ComponentPublicInstance | null;
            $parent: import('vue').ComponentPublicInstance | null;
            $host: Element | null;
            $emit: (event: string, ...args: any[]) => void;
            $el: any;
            $options: import('vue').ComponentOptionsBase<{
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            } & {
                name?: string | undefined;
                id?: string | undefined;
                width?: string | number | undefined;
                color?: string | undefined;
                maxWidth?: string | number | undefined;
                minWidth?: string | number | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
                validationValue?: any;
                baseColor?: string | undefined;
                prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
                iconColor?: string | boolean | undefined;
                hint?: string | undefined;
                hideDetails?: boolean | "auto" | undefined;
            } & {}, {
                reset: () => Promise<void>;
                resetValidation: () => Promise<void>;
                validate: (silent?: boolean) => Promise<string[]>;
                isValid: import('vue').ComputedRef<boolean | null>;
                errorMessages: import('vue').ComputedRef<string[]>;
            }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                "update:modelValue": (value: any) => true;
            }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
                error: boolean;
                direction: "horizontal" | "vertical";
                style: import('vue').StyleValue;
                disabled: boolean | null;
                readonly: boolean | null;
                messages: string | readonly string[];
                rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
                focused: boolean;
                errorMessages: string | readonly string[] | null;
                maxErrors: string | number;
                density: import('vuetify/lib/composables/density').Density;
                centerAffix: boolean;
                glow: boolean;
                hideSpinButtons: boolean;
                persistentHint: boolean;
            }, {}, string, import('vue').SlotsType<Partial<{
                default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
                message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
            }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                beforeCreate?: (() => void) | (() => void)[];
                created?: (() => void) | (() => void)[];
                beforeMount?: (() => void) | (() => void)[];
                mounted?: (() => void) | (() => void)[];
                beforeUpdate?: (() => void) | (() => void)[];
                updated?: (() => void) | (() => void)[];
                activated?: (() => void) | (() => void)[];
                deactivated?: (() => void) | (() => void)[];
                beforeDestroy?: (() => void) | (() => void)[];
                beforeUnmount?: (() => void) | (() => void)[];
                destroyed?: (() => void) | (() => void)[];
                unmounted?: (() => void) | (() => void)[];
                renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
            };
            $forceUpdate: () => void;
            $nextTick: typeof nextTick;
            $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
        } & Readonly<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }> & Omit<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import('vue').ShallowUnwrapRef<{
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
            modelValue?: unknown;
            "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
        }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
            $: import('vue').ComponentInternalInstance;
            $data: {};
            $props: Partial<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            }> & Omit<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
                id?: string | undefined;
                color?: string | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
            } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
            $attrs: {
                [x: string]: unknown;
            };
            $refs: {
                [x: string]: unknown;
            };
            $slots: Readonly<{
                clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNode[]) | undefined;
                "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
                label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNode[]) | undefined;
                loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
                default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
            }>;
            $root: import('vue').ComponentPublicInstance | null;
            $parent: import('vue').ComponentPublicInstance | null;
            $host: Element | null;
            $emit: (event: "update:focused", focused: boolean) => void;
            $el: any;
            $options: import('vue').ComponentOptionsBase<{
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            } & {
                id?: string | undefined;
                color?: string | undefined;
                loading?: string | boolean | undefined;
                label?: string | undefined;
                class?: any;
                theme?: string | undefined;
                "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
                rounded?: string | number | boolean | undefined;
                baseColor?: string | undefined;
                bgColor?: string | undefined;
                appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
                "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
                "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
                centerAffix?: boolean | undefined;
                iconColor?: string | boolean | undefined;
            } & {
                "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
            }, {
                controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                fieldIconColor: import('vue').ComputedRef<string | undefined>;
            }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
                "update:focused": (focused: boolean) => true;
                "update:modelValue": (value: any) => true;
            }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
                flat: boolean;
                reverse: boolean;
                variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
                error: boolean;
                active: boolean;
                style: import('vue').StyleValue;
                disabled: boolean;
                focused: boolean;
                rounded: string | number | boolean;
                tile: boolean;
                clearIcon: import('vuetify/lib/composables/icons').IconValue;
                centerAffix: boolean;
                glow: boolean;
                clearable: boolean;
                dirty: boolean;
                persistentClear: boolean;
                singleLine: boolean;
            }, {}, string, import('vue').SlotsType<Partial<{
                clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    props: Record<string, any>;
                }) => import('vue').VNode[];
                "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
                label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                    label: string | undefined;
                    props: Record<string, any>;
                }) => import('vue').VNode[];
                loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
                default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
            }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
                beforeCreate?: (() => void) | (() => void)[];
                created?: (() => void) | (() => void)[];
                beforeMount?: (() => void) | (() => void)[];
                mounted?: (() => void) | (() => void)[];
                beforeUpdate?: (() => void) | (() => void)[];
                updated?: (() => void) | (() => void)[];
                activated?: (() => void) | (() => void)[];
                deactivated?: (() => void) | (() => void)[];
                beforeDestroy?: (() => void) | (() => void)[];
                beforeUnmount?: (() => void) | (() => void)[];
                destroyed?: (() => void) | (() => void)[];
                unmounted?: (() => void) | (() => void)[];
                renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
                errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
            };
            $forceUpdate: () => void;
            $nextTick: typeof nextTick;
            $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
        } & Readonly<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }> & Omit<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        } & {
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        }> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util').GenericProps<{
            modelValue?: unknown;
            "onUpdate:modelValue"?: ((value: unknown) => void) | undefined;
        }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
            _allExposed: {
                reset: () => Promise<void>;
                resetValidation: () => Promise<void>;
                validate: (silent?: boolean) => Promise<string[]>;
                isValid: import('vue').ComputedRef<boolean | null>;
                errorMessages: import('vue').ComputedRef<string[]>;
            } | {
                controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
                fieldIconColor: import('vue').ComputedRef<string | undefined>;
            } | {};
        }, {}, {}, {}, {
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            type: string;
            error: boolean;
            active: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            autofocus: boolean;
            disabled: boolean;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            persistentPlaceholder: boolean;
            persistentCounter: boolean;
        }>;
        __isFragment?: never;
        __isTeleport?: never;
        __isSuspense?: never;
    } & import('vue').ComponentOptionsBase<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        prefix?: string | undefined;
        role?: string | undefined;
        class?: any;
        theme?: string | undefined;
        placeholder?: string | undefined;
        counter?: string | number | boolean | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        modelValue?: any;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
        suffix?: string | undefined;
        counterValue?: number | ((value: any) => number) | undefined;
        modelModifiers?: Record<string, boolean> | undefined;
    } & {
        $children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: (() => import('vue').VNodeChild) | undefined;
            counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        };
        'v-slots'?: {
            message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
            clear?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            details?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            label?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNodeChild) | undefined;
            append?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
            loader?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
            "prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            "append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
            default?: false | (() => import('vue').VNodeChild) | undefined;
            counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
        } | undefined;
    } & {
        "v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            label: string | undefined;
            props: Record<string, any>;
        }) => import('vue').VNodeChild) | undefined;
        "v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
        "v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
        "v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
        "v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNodeChild) | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        "onUpdate:modelValue"?: ((val: string) => any) | undefined;
        "onClick:control"?: ((e: MouseEvent) => any) | undefined;
        "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
    }, HTMLInputElement & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }> & Omit<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            default?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            prepend?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            append?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            details?: ((arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[]) | undefined;
            message?: ((arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: string, ...args: any[]) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        } & {
            name?: string | undefined;
            id?: string | undefined;
            width?: string | number | undefined;
            color?: string | undefined;
            maxWidth?: string | number | undefined;
            minWidth?: string | number | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
            validationValue?: any;
            baseColor?: string | undefined;
            prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
            iconColor?: string | boolean | undefined;
            hint?: string | undefined;
            hideDetails?: boolean | "auto" | undefined;
        } & {}, {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
            error: boolean;
            direction: "horizontal" | "vertical";
            style: import('vue').StyleValue;
            disabled: boolean | null;
            readonly: boolean | null;
            messages: string | readonly string[];
            rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
            focused: boolean;
            errorMessages: string | readonly string[] | null;
            maxErrors: string | number;
            density: import('vuetify/lib/composables/density').Density;
            centerAffix: boolean;
            glow: boolean;
            hideSpinButtons: boolean;
            persistentHint: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            default: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
            message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    }> & Omit<{
        error: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        disabled: boolean | null;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
    } & {
        name?: string | undefined;
        id?: string | undefined;
        width?: string | number | undefined;
        color?: string | undefined;
        maxWidth?: string | number | undefined;
        minWidth?: string | number | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
        validationValue?: any;
        baseColor?: string | undefined;
        prependIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        appendIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
        iconColor?: string | boolean | undefined;
        hint?: string | undefined;
        hideDetails?: boolean | "auto" | undefined;
    }, "style" | "error" | "reset" | "persistentHint" | "density" | "direction" | "disabled" | "readonly" | "messages" | "rules" | "isValid" | "focused" | "errorMessages" | "maxErrors" | "validate" | "resetValidation" | "centerAffix" | "glow" | "hideSpinButtons"> & import('vue').ShallowUnwrapRef<{
        reset: () => Promise<void>;
        resetValidation: () => Promise<void>;
        validate: (silent?: boolean) => Promise<string[]>;
        isValid: import('vue').ComputedRef<boolean | null>;
        errorMessages: import('vue').ComputedRef<string[]>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VInput/VInput').VInputSlots>, "label" | "style" | "error" | "class" | "name" | keyof import('vue').VNodeProps | "hint" | "persistentHint" | "id" | "density" | "hideDetails" | "direction" | "color" | "theme" | "disabled" | "readonly" | "maxWidth" | "minWidth" | "width" | "appendIcon" | "baseColor" | "prependIcon" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "centerAffix" | "glow" | "hideSpinButtons" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "$children" | "v-slots" | "v-slot:message" | "v-slot:details" | "v-slot:append" | "v-slot:prepend" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & Omit<Omit<{
        $: import('vue').ComponentInternalInstance;
        $data: {};
        $props: Partial<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }> & Omit<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
        $attrs: {
            [x: string]: unknown;
        };
        $refs: {
            [x: string]: unknown;
        };
        $slots: Readonly<{
            clear?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            "prepend-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            "append-inner"?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[]) | undefined;
            label?: ((arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[]) | undefined;
            loader?: ((arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[]) | undefined;
            default?: ((arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[]) | undefined;
        }>;
        $root: import('vue').ComponentPublicInstance | null;
        $parent: import('vue').ComponentPublicInstance | null;
        $host: Element | null;
        $emit: (event: "update:focused", focused: boolean) => void;
        $el: any;
        $options: import('vue').ComponentOptionsBase<{
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        } & {
            id?: string | undefined;
            color?: string | undefined;
            loading?: string | boolean | undefined;
            label?: string | undefined;
            class?: any;
            theme?: string | undefined;
            "onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
            rounded?: string | number | boolean | undefined;
            baseColor?: string | undefined;
            bgColor?: string | undefined;
            appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
            "onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
            "onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
            centerAffix?: boolean | undefined;
            iconColor?: string | boolean | undefined;
        } & {
            "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
        }, {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
            "update:focused": (focused: boolean) => true;
            "update:modelValue": (value: any) => true;
        }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
            flat: boolean;
            reverse: boolean;
            variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
            error: boolean;
            active: boolean;
            style: import('vue').StyleValue;
            disabled: boolean;
            focused: boolean;
            rounded: string | number | boolean;
            tile: boolean;
            clearIcon: import('vuetify/lib/composables/icons').IconValue;
            centerAffix: boolean;
            glow: boolean;
            clearable: boolean;
            dirty: boolean;
            persistentClear: boolean;
            singleLine: boolean;
        }, {}, string, import('vue').SlotsType<Partial<{
            clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                props: Record<string, any>;
            }) => import('vue').VNode[];
            "prepend-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            "append-inner": (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
            label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
                label: string | undefined;
                props: Record<string, any>;
            }) => import('vue').VNode[];
            loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
            default: (arg: import('vuetify/lib/components/VField/VField').VFieldSlot) => import('vue').VNode[];
        }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
            beforeCreate?: (() => void) | (() => void)[];
            created?: (() => void) | (() => void)[];
            beforeMount?: (() => void) | (() => void)[];
            mounted?: (() => void) | (() => void)[];
            beforeUpdate?: (() => void) | (() => void)[];
            updated?: (() => void) | (() => void)[];
            activated?: (() => void) | (() => void)[];
            deactivated?: (() => void) | (() => void)[];
            beforeDestroy?: (() => void) | (() => void)[];
            beforeUnmount?: (() => void) | (() => void)[];
            destroyed?: (() => void) | (() => void)[];
            unmounted?: (() => void) | (() => void)[];
            renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
            errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
        };
        $forceUpdate: () => void;
        $nextTick: typeof nextTick;
        $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
    } & Readonly<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    }> & Omit<{
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        error: boolean;
        active: boolean;
        style: import('vue').StyleValue;
        disabled: boolean;
        focused: boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        glow: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
    } & {
        id?: string | undefined;
        color?: string | undefined;
        loading?: string | boolean | undefined;
        label?: string | undefined;
        class?: any;
        theme?: string | undefined;
        'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
        rounded?: string | number | boolean | undefined;
        baseColor?: string | undefined;
        bgColor?: string | undefined;
        appendInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        prependInnerIcon?: import('vuetify/lib/composables/icons').IconValue | undefined;
        'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
        'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
        centerAffix?: boolean | undefined;
        iconColor?: string | boolean | undefined;
    } & {
        "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
    }, "reverse" | "flat" | "style" | "error" | "variant" | "tile" | "singleLine" | "disabled" | "rounded" | "active" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
        controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
        fieldIconColor: import('vue').ComputedRef<string | undefined>;
    }> & import('vue').ComponentCustomProperties & import('vuetify/lib/util').GenericProps<{
        modelValue?: unknown;
        'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
    }, import('vuetify/lib/components/VField/VField').VFieldSlots>, "reverse" | "flat" | "label" | "style" | "error" | "class" | keyof import('vue').VNodeProps | "id" | "variant" | "tile" | "singleLine" | "color" | "bgColor" | "theme" | "disabled" | "rounded" | "active" | "baseColor" | "focused" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "loading" | "onUpdate:focused" | "modelValue" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "$children" | "v-slots" | "v-slot:clear" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:default" | "onUpdate:modelValue">, `$${any}`> & {
        _allExposed: {
            reset: () => Promise<void>;
            resetValidation: () => Promise<void>;
            validate: (silent?: boolean) => Promise<string[]>;
            isValid: import('vue').ComputedRef<boolean | null>;
            errorMessages: import('vue').ComputedRef<string[]>;
        } | {
            controlRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
            fieldIconColor: import('vue').ComputedRef<string | undefined>;
        } | {};
    }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
        'click:control': (e: MouseEvent) => true;
        'mousedown:control': (e: MouseEvent) => true;
        'update:focused': (focused: boolean) => true;
        'update:modelValue': (val: string) => true;
    }, string, {
        flat: boolean;
        reverse: boolean;
        variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
        type: string;
        error: boolean;
        active: boolean;
        direction: "horizontal" | "vertical";
        style: import('vue').StyleValue;
        autofocus: boolean;
        disabled: boolean;
        readonly: boolean | null;
        messages: string | readonly string[];
        rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation').ValidationResult>) | [string, any, (string | undefined)?])[];
        focused: boolean;
        errorMessages: string | readonly string[] | null;
        maxErrors: string | number;
        density: import('vuetify/lib/composables/density').Density;
        rounded: string | number | boolean;
        tile: boolean;
        clearIcon: import('vuetify/lib/composables/icons').IconValue;
        centerAffix: boolean;
        glow: boolean;
        hideSpinButtons: boolean;
        persistentHint: boolean;
        clearable: boolean;
        dirty: boolean;
        persistentClear: boolean;
        singleLine: boolean;
        persistentPlaceholder: boolean;
        persistentCounter: boolean;
    }, {}, string, import('vue').SlotsType<Partial<{
        message: (arg: import('vuetify/lib/components/VMessages/VMessages').VMessageSlot) => import('vue').VNode[];
        clear: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            props: Record<string, any>;
        }) => import('vue').VNode[];
        details: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
        label: (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot & {
            label: string | undefined;
            props: Record<string, any>;
        }) => import('vue').VNode[];
        append: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
        prepend: (arg: import('vuetify/lib/components/VInput/VInput').VInputSlot) => import('vue').VNode[];
        loader: (arg: import('vuetify/lib/composables/loader').LoaderSlotProps) => import('vue').VNode[];
        'prepend-inner': (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
        'append-inner': (arg: import('vuetify/lib/components/VField/VField').DefaultInputSlot) => import('vue').VNode[];
        default: () => import('vue').VNode[];
        counter: (arg: import('vuetify/lib/components/VCounter/VCounter').VCounterSlot) => import('vue').VNode[];
    }>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vuetify/lib/util').FilterPropsOptions<{
        theme: StringConstructor;
        rounded: {
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
            default: undefined;
        };
        tile: BooleanConstructor;
        loading: (StringConstructor | BooleanConstructor)[];
        class: PropType<import('vuetify/lib/composables/component').ClassValue>;
        style: {
            type: PropType<import('vue').StyleValue>;
            default: null;
        };
        appendInnerIcon: PropType<import('vuetify/lib/composables/icons').IconValue>;
        bgColor: StringConstructor;
        clearable: BooleanConstructor;
        clearIcon: {
            type: PropType<import('vuetify/lib/composables/icons').IconValue>;
            default: string;
        };
        active: BooleanConstructor;
        centerAffix: {
            type: BooleanConstructor;
            default: undefined;
        };
        color: StringConstructor;
        baseColor: StringConstructor;
        dirty: BooleanConstructor;
        disabled: {
            type: BooleanConstructor;
            default: null;
        };
        glow: BooleanConstructor;
        error: BooleanConstructor;
        flat: BooleanConstructor;
        iconColor: (StringConstructor | BooleanConstructor)[];
        label: StringConstructor;
        persistentClear: BooleanConstructor;
        prependInnerIcon: PropType<import('vuetify/lib/composables/icons').IconValue>;
        reverse: BooleanConstructor;
        singleLine: BooleanConstructor;
        variant: {
            type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
            default: string;
            validator: (v: any) => boolean;
        };
        'onClick:clear': PropType<(args_0: MouseEvent) => void>;
        'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
        'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
        focused: BooleanConstructor;
        'onUpdate:focused': PropType<(args_0: boolean) => void>;
        errorMessages: {
            type: PropType<string | readonly string[] | null>;
            default: () => never[];
        };
        maxErrors: {
            type: (StringConstructor | NumberConstructor)[];
            default: number;
        };
        name: StringConstructor;
        readonly: {
            type: PropType<boolean | null>;
            default: null;
        };
        rules: {
            type: PropType<readonly (import('vuetify/lib/types').ValidationRule | import('vuetify/lib/labs/rules').ValidationAlias)[]>;
            default: () => never[];
        };
        modelValue: null;
        validateOn: PropType<import('vuetify/lib/composables/validation').ValidationProps["validateOn"]>;
        validationValue: null;
        width: (StringConstructor | NumberConstructor)[];
        maxWidth: (StringConstructor | NumberConstructor)[];
        minWidth: (StringConstructor | NumberConstructor)[];
        density: {
            type: PropType<import('vuetify/lib/composables/density').Density>;
            default: string;
            validator: (v: any) => boolean;
        };
        id: StringConstructor;
        appendIcon: PropType<import('vuetify/lib/composables/icons').IconValue>;
        prependIcon: PropType<import('vuetify/lib/composables/icons').IconValue>;
        hideDetails: PropType<boolean | "auto">;
        hideSpinButtons: BooleanConstructor;
        hint: StringConstructor;
        persistentHint: BooleanConstructor;
        messages: {
            type: PropType<string | readonly string[]>;
            default: () => never[];
        };
        direction: {
            type: PropType<"horizontal" | "vertical">;
            default: string;
            validator: (v: any) => boolean;
        };
        'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
        'onClick:append': PropType<(args_0: MouseEvent) => void>;
        autofocus: BooleanConstructor;
        counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        counterValue: PropType<number | ((value: any) => number)>;
        prefix: StringConstructor;
        placeholder: StringConstructor;
        persistentPlaceholder: BooleanConstructor;
        persistentCounter: BooleanConstructor;
        suffix: StringConstructor;
        role: StringConstructor;
        type: {
            type: StringConstructor;
            default: string;
        };
        modelModifiers: PropType<Record<string, boolean>>;
    }, import('vue').ExtractPropTypes<{
        theme: StringConstructor;
        rounded: {
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
            default: undefined;
        };
        tile: BooleanConstructor;
        loading: (StringConstructor | BooleanConstructor)[];
        class: PropType<import('vuetify/lib/composables/component').ClassValue>;
        style: {
            type: PropType<import('vue').StyleValue>;
            default: null;
        };
        appendInnerIcon: PropType<import('vuetify/lib/composables/icons').IconValue>;
        bgColor: StringConstructor;
        clearable: BooleanConstructor;
        clearIcon: {
            type: PropType<import('vuetify/lib/composables/icons').IconValue>;
            default: string;
        };
        active: BooleanConstructor;
        centerAffix: {
            type: BooleanConstructor;
            default: undefined;
        };
        color: StringConstructor;
        baseColor: StringConstructor;
        dirty: BooleanConstructor;
        disabled: {
            type: BooleanConstructor;
            default: null;
        };
        glow: BooleanConstructor;
        error: BooleanConstructor;
        flat: BooleanConstructor;
        iconColor: (StringConstructor | BooleanConstructor)[];
        label: StringConstructor;
        persistentClear: BooleanConstructor;
        prependInnerIcon: PropType<import('vuetify/lib/composables/icons').IconValue>;
        reverse: BooleanConstructor;
        singleLine: BooleanConstructor;
        variant: {
            type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
            default: string;
            validator: (v: any) => boolean;
        };
        'onClick:clear': PropType<(args_0: MouseEvent) => void>;
        'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
        'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
        focused: BooleanConstructor;
        'onUpdate:focused': PropType<(args_0: boolean) => void>;
        errorMessages: {
            type: PropType<string | readonly string[] | null>;
            default: () => never[];
        };
        maxErrors: {
            type: (StringConstructor | NumberConstructor)[];
            default: number;
        };
        name: StringConstructor;
        readonly: {
            type: PropType<boolean | null>;
            default: null;
        };
        rules: {
            type: PropType<readonly (import('vuetify/lib/types').ValidationRule | import('vuetify/lib/labs/rules').ValidationAlias)[]>;
            default: () => never[];
        };
        modelValue: null;
        validateOn: PropType<import('vuetify/lib/composables/validation').ValidationProps["validateOn"]>;
        validationValue: null;
        width: (StringConstructor | NumberConstructor)[];
        maxWidth: (StringConstructor | NumberConstructor)[];
        minWidth: (StringConstructor | NumberConstructor)[];
        density: {
            type: PropType<import('vuetify/lib/composables/density').Density>;
            default: string;
            validator: (v: any) => boolean;
        };
        id: StringConstructor;
        appendIcon: PropType<import('vuetify/lib/composables/icons').IconValue>;
        prependIcon: PropType<import('vuetify/lib/composables/icons').IconValue>;
        hideDetails: PropType<boolean | "auto">;
        hideSpinButtons: BooleanConstructor;
        hint: StringConstructor;
        persistentHint: BooleanConstructor;
        messages: {
            type: PropType<string | readonly string[]>;
            default: () => never[];
        };
        direction: {
            type: PropType<"horizontal" | "vertical">;
            default: string;
            validator: (v: any) => boolean;
        };
        'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
        'onClick:append': PropType<(args_0: MouseEvent) => void>;
        autofocus: BooleanConstructor;
        counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        counterValue: PropType<number | ((value: any) => number)>;
        prefix: StringConstructor;
        placeholder: StringConstructor;
        persistentPlaceholder: BooleanConstructor;
        persistentCounter: BooleanConstructor;
        suffix: StringConstructor;
        role: StringConstructor;
        type: {
            type: StringConstructor;
            default: string;
        };
        modelModifiers: PropType<Record<string, boolean>>;
    }>>;
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export default _default;
