export declare enum Browser {
    CHROME = "chrome",
    ELECTRON = "electron",
    FIREFOX = "firefox",
    REACT_NATIVE = "react-native",
    SAFARI = "safari",
    WEBKIT_BROWSER = "webkit-browser"
}
/**
 * Maps the names of the browsers from ua-parser to the internal names defined in
 * ./browsers.js
 */
export declare const PARSER_TO_JITSI_NAME: {
    [key: string]: Browser;
};
export declare enum Engine {
    BLINK = "blink",
    GECKO = "gecko",
    WEBKIT = "webkit"
}
export declare const ENGINES: {
    [key: string]: Engine;
};
