export interface IOtherMonitor {
    readonly htmlRoot: HTMLElement;
    readonly window: Window;
}
export declare class OtherMonitor implements IOtherMonitor {
    readonly window: Window;
    constructor(window: Window);
    get htmlRoot(): HTMLElement;
}
