export declare class ChatBubble { type: 'bot' | 'user'; message: string; timestamp: string; parsedHTML: string; showActions: boolean; isSpeaking: boolean; componentWillLoad(): Promise; copyResponse(message: string): Promise; private speakText; private stopSpeaking; render(): any; }