export interface IPushWindowParams {
    url: string;
    param: {
        defaultTitle?: string;
        showLoading?: boolean;
        readTitle?: boolean;
        pullRefresh?: boolean;
        allowsBounceVertical?: boolean;
        closeCurrentWindow?: boolean;
        closeAllWindow?: boolean;
        animationType?: "none" | "push";
    };
    passData?: {
        [key: string]: string;
    };
}
declare function pushWindow(params: IPushWindowParams): Promise<void>;
declare namespace pushWindow {
    var version: {
        android: string;
        ios: string;
    };
}
export default pushWindow;
