import { WellboreData, RootData } from './data';
export declare class Highlight {
    active: boolean;
    root: RootData;
    wellbores: WellboreData[];
    /** Return true of highlight is single. */
    get single(): boolean;
    /** Get first wellbore. */
    get first(): WellboreData;
    /** Set highlight */
    set(root: RootData, wellbores: WellboreData[]): void;
    private highlightRoot;
    private highlightWellbores;
    clear(): void;
    private clearRoot;
    private clearWellbores;
    equals(root: RootData, wellbores: WellboreData[]): boolean;
}
