/**
 * Ocra (REST API for Sinch RTC clients)
 * REST API for Sinch RTC clients.
 *
 * The version of the OpenAPI document: 0.11.0
 * Contact: rtc@sinch.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * Type of the media stream
 * @export
 * @enum {string}
 */
export declare enum MediaStreamType {
    Audio = "audio",
    Video = "video"
}
export declare function MediaStreamTypeFromJSON(json: any): MediaStreamType;
export declare function MediaStreamTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): MediaStreamType;
export declare function MediaStreamTypeToJSON(value?: MediaStreamType | null): any;
