import type { IIntelligenceConversationMessage } from './IIntelligenceConversationMessage'; /** @deprecated Use {@link IntelligenceConversationMessageOrigin} instead. This alias will be removed in a future version. */ export { IntelligenceConversationMessageOrigin as IntelligenceChatMessageOrigin } from './IIntelligenceConversationMessage'; export interface IIntelligenceChatMessage extends Pick { /** Required text content of the message (required before a conversation is created). */ text: string; /** Set when the intent was resolved by the AI and was actually matched to known Quest documents. */ intentResolved?: boolean; } //# sourceMappingURL=IIntelligenceChatMessage.d.ts.map