import { RequestTransportCallback } from '@yandex-int/messenger.channels'; import { GetChildWindowTransportParams } from '../../types'; interface IframeStrategyAdapter { show(): void; hide(): void; remove(): void; create(url: string, allow?: string[]): HTMLIFrameElement; } export declare class IframeStrategy { private adapter; constructor(adapter: IframeStrategyAdapter); show(): void; hide(): void; remove(): void; ready(): void; getChildWindowTransport(params: GetChildWindowTransportParams, callback: RequestTransportCallback): void; } export {};