/**
 * 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 * as runtime from '../runtime';
import { Config } from '../models';
export interface GetConfigRequest {
    userId: string;
    instanceId: string;
}
/**
 *
 */
export declare class ConfigApi extends runtime.BaseAPI {
    /**
     * Get client configuration (supporting Instance-specific configuration)
     */
    getConfigRaw(requestParameters: GetConfigRequest): Promise<runtime.ApiResponse<Config>>;
    /**
     * Get client configuration (supporting Instance-specific configuration)
     */
    getConfig(requestParameters: GetConfigRequest): Promise<Config>;
}
