/// <reference types="react" />
interface PositionState {
    clientTop: number | null;
    clientLeft: number | null;
    posPlacement: any;
    arrowPosition: number | null;
}
export declare function useTooltipPosition(props: any): {
    refTooltip: import("react").MutableRefObject<HTMLDivElement | null>;
    position: PositionState;
};
export {};
