/** * Represents Chat information. */ interface ChatContext { /** * The Microsoft Teams ID for the chat with which the content is associated. */ id: string; } export type { ChatContext };