/// <reference types="react" />
interface ModalPosition {
    ref?: React.RefObject<HTMLDivElement>;
    showModal: boolean;
}
export declare const useModalPosition: ({ ref, showModal }: ModalPosition) => {
    x: number;
    y: number;
};
export {};
