import React from 'react'; import { Section } from '../../../hooks/useChat'; interface AssistantMessageActionsProps { section: Section; speechStatus: string; start: () => void; stop: () => void; handleOpenInLLM: (platform: string) => void; } /** * Component for message actions related to the assistant's response. * Includes rewrite, copy, text-to-speech, export, and external LLM links. */ declare const AssistantMessageActions: ({ section, speechStatus, start, stop, handleOpenInLLM, }: AssistantMessageActionsProps) => React.JSX.Element; export default AssistantMessageActions;