import { BrowserInfo } from '../model/BrowserInfo'; export declare class BrowserUtil { static getBrowserInfo(): BrowserInfo; static getOrientation(): string; static isQQBroswer(): boolean; static isRunWechat(): boolean; static isHuohuaPlayer(): boolean; static isHuohuaApp(): boolean; static isEditor(): boolean; /** * 浏览器准备好后执行的函数 * @param {Function} readyCall */ static domReady(readyCall: Function): void; }