import { SdkClient } from "../common/sdk-client"; import { AdvancedTokenExchangeModels } from "./advanced-token-models"; export declare class AdvancedTokenExchangeClient extends SdkClient { private _baseUrl; /** * * In order to access the ATE /token endpoint, extract the access token from the access_token field in the response * from the above Technical Token Manager request and send it as Bearer token in the Authorization header of HTTP requests. * The subject_token is provided through the technical token. * * @see https://developer.mindsphere.io/howto/howto-local-development.html#procedure * * @param {AdvancedTokenExchangeModels.AdvancedTokenExchangeRequest} request * @returns {Promise} * * @memberOf AdvancedTokenExchangeClient */ ExchangeToken(request: string | AdvancedTokenExchangeModels.AdvancedTokenExchangeRequest): Promise; }