export declare type EmbedModeType = '' | 'iframe';
export declare enum EmbedModeEnum {
    none = "",
    iframe = "iframe"
}
export declare class EmbedModeModel {
    parent: string;
    pwd: string;
    type: EmbedModeType;
    usr: string;
    constructor();
    isIframe(): boolean;
}
