/**
 * 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.
 */
import { ClientEvent, SemanticVersion } from './';
/**
 * Object contining metric events emitted by the client
 * @export
 * @interface ClientEvents
 */
export interface ClientEvents {
    /**
     *
     * @type {Array<ClientEvent>}
     * @memberof ClientEvents
     */
    events: Array<ClientEvent>;
    /**
     *
     * @type {SemanticVersion}
     * @memberof ClientEvents
     */
    eventsSemanticVersion: SemanticVersion;
}
export declare function ClientEventsFromJSON(json: any): ClientEvents;
export declare function ClientEventsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClientEvents;
export declare function ClientEventsToJSON(value?: ClientEvents | null): any;
