import type { Message } from '../types/index.ts'; interface Props { message: Message; /** Invoked when the user clicks "Retry" on a failed user message. */ onRetry?: (messageId: string) => void; } export declare function MessageBubble({ message, onRetry }: Props): import("react/jsx-runtime").JSX.Element; export declare function TypingIndicator(): import("react/jsx-runtime").JSX.Element; export {};