import { default as React } from 'react'; export interface MessageProps { id: string; content: string; sender: "user" | "assistant"; timestamp: Date; isThinking?: boolean; isLoading?: boolean; className?: string; style?: React.CSSProperties; showTimestamp?: boolean; avatarUser?: React.ReactNode; avatarAssistant?: React.ReactNode; thinkingText?: string; customThinkingComponent?: React.ReactNode; customUserMessageComponent?: React.ReactNode; customAssistantMessageComponent?: React.ReactNode; parseContent?: boolean; parsedContent?: string; thinkContent?: string; knowledgeSources?: Array<{ title: string; description?: string; url?: string; }>; } export declare const Message: React.FC; export default Message;