/**
 * Represents a single message in the chat history.
 */
export interface ChatHistoryMessage {
    /**
     * The unique identifier for the chat message.
     */
    id: string;
    /**
     * The role of the message sender (e.g., "user", "assistant", "system").
     */
    role: string;
    /**
     * The content of the chat message.
     */
    content: string;
    /**
     * The timestamp of when the message was sent.
     */
    timestamp: Date;
}
//# sourceMappingURL=ChatHistoryMessage.d.ts.map