import { Client, ClientOptions } from '@microsoft/teams.common'; import { SignInUrlResponse } from '../../models/sign-in/sign-in-url-response.mjs'; import { ApiClientSettings } from '../api-client-settings.mjs'; import '../../models/token/token-post-resource.mjs'; import '../../models/token-exchange/token-exchange-resource.mjs'; import '../../auth/cloud-environment.mjs'; declare const BOT_SIGNIN_ENDPOINTS: { URL: string; RESOURCE: string; }; type GetBotSignInUrlParams = { state: string; codeChallenge?: string; emulatorUrl?: string; finalRedirect?: string; }; type GetBotSignInResourceParams = { state: string; codeChallenge?: string; emulatorUrl?: string; finalRedirect?: string; }; declare class BotSignInClient { get http(): Client; set http(v: Client); protected _http: Client; protected _apiClientSettings: Partial; constructor(options?: Client | ClientOptions, apiClientSettings?: Partial); getUrl(params: GetBotSignInUrlParams): Promise; getResource(params: GetBotSignInResourceParams): Promise; } export { BOT_SIGNIN_ENDPOINTS, BotSignInClient, type GetBotSignInResourceParams, type GetBotSignInUrlParams };