import { Api, ApiClient, UnifiedCredentials } from '@sinch/sdk-client'; import { LazyElasticSipTrunkingApiClient } from './elastic-sip-trunking-service'; export declare class ElasticSipTrunkingDomainApi implements Api { readonly lazyClient: LazyElasticSipTrunkingApiClient; readonly apiName: string; constructor(lazyClient: LazyElasticSipTrunkingApiClient, apiName: string); get client(): ApiClient; /** * Kept for backward compatibility - TODO: remove in future major release * @return {ApiClient} * @deprecated */ getSinchClient(): ApiClient; /** * Update the default hostname for the API * @param {string} hostname - The new hostname to use for the APIs. */ setHostname(hostname: string): void; /** * Updates the credentials used to authenticate API requests * @param {UnifiedCredentials} credentials */ setCredentials(credentials: Partial): void; }