export declare enum PlatformType {
    Web = 0,
    Android = 1,
    iOS = 2,
    Windows = 3,
    Test = 4,
    Backend = 5
}
export declare function getPlatformType(testableUserAgent?: string): PlatformType.Web | PlatformType.Android | PlatformType.iOS | PlatformType.Windows | PlatformType.Test;
