/**
 * 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.
 */
/**
 *
 * @export
 * @interface MxpPubSubConfig
 */
export interface MxpPubSubConfig {
    /**
     *
     * @type {string}
     * @memberof MxpPubSubConfig
     */
    hostname: string;
    /**
     *
     * @type {string}
     * @memberof MxpPubSubConfig
     */
    signalSubscribeKey: string;
    /**
     *
     * @type {string}
     * @memberof MxpPubSubConfig
     */
    signalPublishKey: string;
    /**
     *
     * @type {string}
     * @memberof MxpPubSubConfig
     */
    broadcastSubscribeKey: string;
    /**
     * Sinch SDK client should use PubNub client UUID request parameter to ensure accurate billing (JIRA RTC-8362)
     * @type {string}
     * @memberof MxpPubSubConfig
     */
    pubnubClientId?: string;
}
export declare function MxpPubSubConfigFromJSON(json: any): MxpPubSubConfig;
export declare function MxpPubSubConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): MxpPubSubConfig;
export declare function MxpPubSubConfigToJSON(value?: MxpPubSubConfig | null): any;
