export interface UseVoiceTurnValue { isCapturingSpeech: boolean; toggle: () => void; start: () => void; commit: () => void; } export declare function useVoiceTurn(): UseVoiceTurnValue;