export declare class TargetTextRange {
    /**
     * Xpath of common Ancestor Container
     */
    commonAncestorContainer?: string;
    /**
     * Full xpath of common Ancestor Container
     */
    commonAncestorContainerFXpath?: string;
    /**
     * Full xpath of common Ancestor Container with class names
     */
    commonAncestorContainerCFXpath?: string;
    /**
     * Selected text
     */
    text?: string;
    /**
     * Occurrence of selected text
     */
    occurrence?: number;
}
