export declare class BrowserHelper {
    /**
     * @returns Whether the device is a desktop/laptop for sure.
     */
    static isDesktopDevice(): boolean;
    static isIpad(userAgent: string): boolean;
    /**
     * @returns The browser version in lower case, or empty string if not found.
     */
    static getBrowserName(): string;
    /**
     * @returns The browser version in lower case, or empty string if not found.
     */
    static getBrowserVersion(): string;
}
