import { PropType, Ref } from 'vue';
declare const PopoverTip: import("vue").DefineComponent<{
    tag: {
        type: PropType<HTMLElement>;
        default: () => {};
    };
    countTag: {
        type: PropType<HTMLElement>;
        default: () => {};
    };
    content: {
        type: PropType<string | Ref<string>>;
        default: string;
    };
    split: {
        type: BooleanConstructor;
        default: boolean;
    };
    dropShow: {
        type: BooleanConstructor;
        default: boolean;
    };
}, () => 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: () => {};
    };
    content: {
        type: PropType<string | Ref<string>>;
        default: string;
    };
    split: {
        type: BooleanConstructor;
        default: boolean;
    };
    dropShow: {
        type: BooleanConstructor;
        default: boolean;
    };
}>>, {
    split: boolean;
    tag: HTMLElement;
    countTag: HTMLElement;
    content: string | Ref<string>;
    dropShow: boolean;
}>;
export default PopoverTip;
