import { AnchorRecord } from './anchor-record.data.model';
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;
    /**
     * Robust anchor descriptor for the element
     */
    anchor?: AnchorRecord | null;
}
