/**
 * 设备的宽、高及基本信息
 */
export default class MediaDevice {
    static readonly width: number;
    static readonly height: number;
    static readonly isIOS: boolean;
    static readonly isAndroid: boolean;
    static readonly platform: "ios" | "android" | "macos" | "windows" | "web";
}
