import { Writer, Reader } from 'protobufjs/minimal'; export interface DeviceInfo { platformType: DeviceInfo_PlatformType; osVersion: string; deviceModel: string; imeiMd5: Uint8Array; deviceId: string; softDid: string; kwaiDid: string; manufacturer: string; deviceName: string; } export declare const protobufPackage = "AcFunDanmu"; export declare enum DeviceInfo_PlatformType { kInvalid = 0, kAndroid = 1, kiOS = 2, kWindows = 3, WECHAT_ANDROID = 4, WECHAT_IOS = 5, H5 = 6, H5_ANDROID = 7, H5_IOS = 8, H5_WINDOWS = 9, H5_MAC = 10, kPlatformNum = 11, UNRECOGNIZED = -1 } export declare function deviceInfo_PlatformTypeFromJSON(object: any): DeviceInfo_PlatformType; export declare function deviceInfo_PlatformTypeToJSON(object: DeviceInfo_PlatformType): string; export declare const DeviceInfo: { encode(message: DeviceInfo, writer?: Writer): Writer; decode(input: Uint8Array | Reader, length?: number): DeviceInfo; fromJSON(object: any): DeviceInfo; fromPartial(object: DeepPartial): DeviceInfo; toJSON(message: DeviceInfo): unknown; }; declare type Builtin = Date | Function | Uint8Array | string | number | undefined; export declare type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {};