import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
export * from './src/type';
export declare const TInput: {
    new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
        modelValue: {
            type: PropType<string | number | null>;
            required: true;
            default: string;
        };
        placeholder: {
            type: PropType<string>;
            default: string;
        };
        decimalLimit: {
            type: PropType<number>;
            default: number;
        };
        inputType: {
            type: PropType<RegExp | "text" | "amount" | "decimal" | "phone" | "integer" | "idCard">;
            default: string;
        };
        appendTitle: {
            type: PropType<string>;
            default: string;
        };
        showThousands: {
            type: PropType<boolean>;
            default: boolean;
        };
        isTip: {
            type: PropType<boolean>;
            default: boolean;
        };
        isShowErrorTip: {
            type: PropType<boolean>;
            default: boolean;
        };
        customErrorTip: {
            type: PropType<string>;
            default: string;
        };
    }>> & {
        "onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
    }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
        "update:modelValue": (value: string | number | null) => void;
    }, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
        modelValue: {
            type: PropType<string | number | null>;
            required: true;
            default: string;
        };
        placeholder: {
            type: PropType<string>;
            default: string;
        };
        decimalLimit: {
            type: PropType<number>;
            default: number;
        };
        inputType: {
            type: PropType<RegExp | "text" | "amount" | "decimal" | "phone" | "integer" | "idCard">;
            default: string;
        };
        appendTitle: {
            type: PropType<string>;
            default: string;
        };
        showThousands: {
            type: PropType<boolean>;
            default: boolean;
        };
        isTip: {
            type: PropType<boolean>;
            default: boolean;
        };
        isShowErrorTip: {
            type: PropType<boolean>;
            default: boolean;
        };
        customErrorTip: {
            type: PropType<string>;
            default: string;
        };
    }>> & {
        "onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
    }, {
        modelValue: string | number | null;
        placeholder: string;
        decimalLimit: number;
        inputType: "text" | "amount" | "decimal" | "phone" | "integer" | "idCard" | RegExp;
        appendTitle: string;
        showThousands: boolean;
        isTip: boolean;
        isShowErrorTip: boolean;
        customErrorTip: string;
    }, true, {}, {}, {
        P: {};
        B: {};
        D: {};
        C: {};
        M: {};
        Defaults: {};
    }, Readonly< ExtractPropTypes<{
        modelValue: {
            type: PropType<string | number | null>;
            required: true;
            default: string;
        };
        placeholder: {
            type: PropType<string>;
            default: string;
        };
        decimalLimit: {
            type: PropType<number>;
            default: number;
        };
        inputType: {
            type: PropType<RegExp | "text" | "amount" | "decimal" | "phone" | "integer" | "idCard">;
            default: string;
        };
        appendTitle: {
            type: PropType<string>;
            default: string;
        };
        showThousands: {
            type: PropType<boolean>;
            default: boolean;
        };
        isTip: {
            type: PropType<boolean>;
            default: boolean;
        };
        isShowErrorTip: {
            type: PropType<boolean>;
            default: boolean;
        };
        customErrorTip: {
            type: PropType<string>;
            default: string;
        };
    }>> & {
        "onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
    }, {}, {}, {}, {}, {
        modelValue: string | number | null;
        placeholder: string;
        decimalLimit: number;
        inputType: "text" | "amount" | "decimal" | "phone" | "integer" | "idCard" | RegExp;
        appendTitle: string;
        showThousands: boolean;
        isTip: boolean;
        isShowErrorTip: boolean;
        customErrorTip: string;
    }>;
    __isFragment?: never;
    __isTeleport?: never;
    __isSuspense?: never;
} & ComponentOptionsBase<Readonly< ExtractPropTypes<{
    modelValue: {
        type: PropType<string | number | null>;
        required: true;
        default: string;
    };
    placeholder: {
        type: PropType<string>;
        default: string;
    };
    decimalLimit: {
        type: PropType<number>;
        default: number;
    };
    inputType: {
        type: PropType<RegExp | "text" | "amount" | "decimal" | "phone" | "integer" | "idCard">;
        default: string;
    };
    appendTitle: {
        type: PropType<string>;
        default: string;
    };
    showThousands: {
        type: PropType<boolean>;
        default: boolean;
    };
    isTip: {
        type: PropType<boolean>;
        default: boolean;
    };
    isShowErrorTip: {
        type: PropType<boolean>;
        default: boolean;
    };
    customErrorTip: {
        type: PropType<string>;
        default: string;
    };
}>> & {
    "onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
    "update:modelValue": (value: string | number | null) => void;
}, string, {
    modelValue: string | number | null;
    placeholder: string;
    decimalLimit: number;
    inputType: "text" | "amount" | "decimal" | "phone" | "integer" | "idCard" | RegExp;
    appendTitle: string;
    showThousands: boolean;
    isTip: boolean;
    isShowErrorTip: boolean;
    customErrorTip: string;
}, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
    $slots: Partial<Record<NonNullable<string | number>, (_: any) => any>> & Partial<Record<NonNullable<string | number>, (_: any) => any>> & {
        append?(_: {}): any;
    };
});
