import { BaseWidgetOptions, BaseWidget } from '../core/base-widget'; interface IframeBoxWidgetOptions extends BaseWidgetOptions { } export declare class IframeBoxWidget extends BaseWidget { private loaded; private crossElem; private iframe; constructor(options: IframeBoxWidgetOptions); protected hideNode(): void; getBaseCls(): string; isLoaded(): boolean; load(url: string): IframeBoxWidget; setContent(): void; render(): void; bindEvents(): void; setWidth(width: string): void; } export {};