import { useVoiceAssistant } from '@livekit/components-react/hooks'; export type AgentState = ReturnType['state']; export interface UseAgentVoiceStateValue { state: AgentState; isSpeaking: boolean; isListening: boolean; mediaStreamTrack: MediaStreamTrack | undefined; } export declare function useAgentVoiceState(): UseAgentVoiceStateValue;