interface options {
    event?: Event | MouseEvent | TouchEvent;
    absolute?: boolean;
    scroll?: boolean;
}
declare type cursorPosition = {
    x: number;
    y: number;
};
declare const GetCursorPosition: (opt?: options | undefined) => cursorPosition;
export default GetCursorPosition;
