import { ComponentFixture } from '@angular/core/testing'; import { TestComponent } from './test.component'; import { DebugElement } from '@angular/core'; export declare class PageObject { fixture: ComponentFixture; context: TestComponent; dl: DebugElement; el: HTMLElement; constructor(); updateWidget(obj: { [key: string]: any; }): this; updateSchema(obj: { [key: string]: any; }): this; expectAttribute(cls: string, attrName: string, expectValue: any): this; expectClassName(cls: string, expectClassName: string): this; expectDisabled(cls: string, result?: boolean): this; }