/** * @public */ export type ContentCard = { id: string; component?: string; type?: string; data: Record; }; /** * @public */ export type ContentCardRawData = Record<'id' | 'type' | string, unknown>; /** * @public */ export type ContentCardFormattedData = { id: string; data: ContentCardRawData; }; //# sourceMappingURL=Conversation.d.ts.map