/** * Enum representing different types of cards from the agent copilot notification service. */ export declare enum AgentCopilotCardType { /** * Represents an Adaptive Card content type. */ ADAPTIVE_CARD = "AdaptiveCard", /** * Represents a Text card type. */ TEXT = "Text", /** * Represents a finalSummary card type. */ FINAL_SUMMARY = "finalSummary" }