import { Ref, PropType } from 'vue';
declare const TipModal: import("vue").DefineComponent<{
    tag: {
        type: PropType<HTMLElement>;
        default: () => {};
    };
    countTag: {
        type: PropType<HTMLElement>;
        default: () => {};
    };
    position: {
        type: BooleanConstructor;
        default: boolean;
    };
    tipShow: {
        type: BooleanConstructor;
        default: boolean;
    };
    dropShow: {
        type: BooleanConstructor;
        default: boolean;
    };
    content: {
        type: PropType<string | Ref<string>>;
        default: string;
    };
    split: {
        type: BooleanConstructor;
        default: boolean;
    };
    changeTipShow: {
        type: FunctionConstructor;
        default: () => void;
    };
    tipHandle: {
        type: FunctionConstructor;
        default: () => void;
    };
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
    tag: {
        type: PropType<HTMLElement>;
        default: () => {};
    };
    countTag: {
        type: PropType<HTMLElement>;
        default: () => {};
    };
    position: {
        type: BooleanConstructor;
        default: boolean;
    };
    tipShow: {
        type: BooleanConstructor;
        default: boolean;
    };
    dropShow: {
        type: BooleanConstructor;
        default: boolean;
    };
    content: {
        type: PropType<string | Ref<string>>;
        default: string;
    };
    split: {
        type: BooleanConstructor;
        default: boolean;
    };
    changeTipShow: {
        type: FunctionConstructor;
        default: () => void;
    };
    tipHandle: {
        type: FunctionConstructor;
        default: () => void;
    };
}>>, {
    split: boolean;
    tag: HTMLElement;
    countTag: HTMLElement;
    content: string | Ref<string>;
    dropShow: boolean;
    tipShow: boolean;
    changeTipShow: Function;
    position: boolean;
    tipHandle: Function;
}>;
export default TipModal;
