import { Base, Type } from "./type";
import { HighlightingState } from "./HighlightingState";
/**
 * @hidden
 */
export declare class HighlightingInfo extends Base {
    static $t: Type;
    constructor();
    h: number;
    g: number;
    f: number;
    a: HighlightingState;
    e: number;
    d: boolean;
    c: boolean;
    b: boolean;
    i: any;
}
