export interface IWindow {
    type?: IWindowType;
    url?: string;
    applicationId?: string;
    shareFlag?: boolean;
    nBack?: boolean;
    success?: (data: any) => void;
    fail?: (error: any) => void;
    complete?: (msg: any) => void;
    listener?: () => void;
}
export declare enum IWindowType {
    NATIVE = "native",
    URL = "url"
}
