export declare class TargetElement {
    /**
     * Xpath of target element
     */
    xpath?: string;
    /**
     * Full xpath of target element
     */
    fXpath?: string;
    /**
     * Full xpath of target element with class names
     */
    cfXpath?: string;
    /**
     * Relative top position of cursor on target element
     */
    topPercentage: number;
    /**
     * Relative left position of cursor on target element
     */
    leftPercentage: number;
}
