/**
 * 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 { IceServersResponse } from '../models';
export interface GetIceServersRequest {
    userId: string;
    instanceId: string;
}
/**
 *
 */
export declare class IceApi extends runtime.BaseAPI {
    /**
     * Get STUN/TURN server configuration + credentials. Credentials will be time-limited.
     */
    getIceServersRaw(requestParameters: GetIceServersRequest): Promise<runtime.ApiResponse<IceServersResponse>>;
    /**
     * Get STUN/TURN server configuration + credentials. Credentials will be time-limited.
     */
    getIceServers(requestParameters: GetIceServersRequest): Promise<IceServersResponse>;
}
