/**
 * 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.
 */
/**
 * NOTE: The listed set of enum values are the well-defined error domains. A client should also be allowed to specify any other domain value (given by ^[a-z]+), and in such case an Ocra server-side implementation should not reject other domain values (they should simply be considered opaque).
 * @export
 * @enum {string}
 */
export declare enum ClientErrorDomain {
    Network = "network",
    Http = "http",
    Api = "api",
    Mxp = "mxp"
}
export declare function ClientErrorDomainFromJSON(json: any): ClientErrorDomain;
export declare function ClientErrorDomainFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClientErrorDomain;
export declare function ClientErrorDomainToJSON(value?: ClientErrorDomain | null): any;
