export class DeviceInfo extends MediaDeviceInfo {
}
export class CameraDeviceInfo extends DeviceInfo {
    constructor(deviceId: string, groupId: string, kind: string, label: string, facing: string);
    /**
    * @type {string}
    */
    facingMode: string;
}

export class AudioDeviceInfo extends DeviceInfo {
}

declare class MediaDeviceInfo {
    constructor(deviceId: any, groupId: any, kind: any, label: any, facing: any);
    /**
     * @type {string}
     */
    deviceId: string;
    /**
     * @type {string}
     */
    groupId: string;
    /**
     * @type {string}
     */
    kind: string;
    /**
     * @type {string}
     */
    label: string;
    /**
    * @type {string}
    */
    facing: string;
}
export { };