/**
 * Enum {@link DeviceType} represents the various types of devices that a user can use to interact with the API.
 *
 * @readonly
 * @enum {number}
 * @property {number} UNKNOWN - The type of device is unknown.
 * @property {number} IOS - The device is an iOS device (iPhone or iPad).
 * @property {number} ANDROID - The device is an Android device (phone or tablet).
 * @property {number} WINDOWS_PHONE - The device is a Windows Phone device.
 */
export declare enum DeviceType {
    UNKNOWN = 0,
    IOS = 1,
    ANDROID = 2,
    WINDOWS_PHONE = 3
}
