interface BotChannelSettings { name: string; } export interface MicrosoftTeamsChannelSettings extends BotChannelSettings { callingWebhook?: string; } export interface CreateOrUpdateBotFrameworkBotArgs { botId: string; name: string; messagingEndpoint: string; description?: string; iconUrl?: string; channels?: BotChannelSettings[]; } export {}; //# sourceMappingURL=createOrUpdateBotFrameworkBotArgs.d.ts.map