/**
 * Mock of MediaTrackSupportedConstraints
 * @export
 * @interface MediaTrackSupportedConstraints
 * @ref [MediaTrackSupportedConstraints | MDN](https://developer.mozilla.org/en-US/docs/Web/API/MediaTrackSupportedConstraints)
 */
export interface MediaTrackSupportedConstraints {
    autoGainControl: boolean;
    width: boolean;
    height: boolean;
    aspectRatio: boolean;
    frameRate: boolean;
    facingMode: boolean;
    resizeMode: boolean;
    volume: boolean;
    sampleRate: boolean;
    sampleSize: boolean;
    echoCancellation: boolean;
    latency: boolean;
    noiseSuppression: boolean;
    channelCount: boolean;
    deviceId: boolean;
    groupId: boolean;
    displaySurface: boolean;
    logicalSurface: boolean;
}
//# sourceMappingURL=MediaTrackSupportedConstraints.d.ts.map