import { ExtractPropTypes } from "vue";
export declare const UiTooltipFollowPropsOption: {
    readonly classExtraName: {
        readonly type: StringConstructor;
    };
    readonly disabled: {
        readonly type: BooleanConstructor;
        readonly default: false;
    };
    readonly content: {
        readonly type: StringConstructor;
    };
    readonly offsetX: {
        readonly type: NumberConstructor;
        readonly default: 20;
    };
    readonly offsetY: {
        readonly type: NumberConstructor;
        readonly default: 20;
    };
    readonly zIndex: {
        readonly type: NumberConstructor;
        readonly default: 66;
    };
    readonly width: {
        readonly type: NumberConstructor;
    };
};
export type UiTooltipFollowProps = ExtractPropTypes<typeof UiTooltipFollowPropsOption>;
export declare const UiTooltipFollowEmits: {
    "before-enter": () => boolean;
    "before-leave": () => boolean;
    "after-enter": () => boolean;
    "after-leave": () => boolean;
};
