import { IControl } from "./abstractions"; import { Component } from "./Component"; export declare class Frame extends Component { current: IControl | null; isBusy: boolean; onmounted(sender: any): void; dispose(): Promise; flush(): Promise; clear(): Promise; constructor(); previouspage: any; currentlist: Set; navigate(page: IControl): Promise; }