import { CloudEnvironment } from '../auth/cloud-environment.js'; type ApiClientSettings = { /** * the URL to use for managing user oauth tokens. * Specify this value if you are using a regional bot. * For e.g., https://europe.token.botframework.com * Default is https://token.botframework.com */ readonly oauthUrl: string; }; declare const DEFAULT_API_CLIENT_SETTINGS: ApiClientSettings; declare function mergeApiClientSettings(apiClientSettings?: Partial, cloud?: CloudEnvironment): ApiClientSettings; export { type ApiClientSettings, DEFAULT_API_CLIENT_SETTINGS, mergeApiClientSettings };