/** * useVoiceCommand — continuously listens for voice commands via SpeechRecognition. * Chrome/Edge only (webkit prefix). */ declare function useVoiceCommand(onCommand: (transcript: string) => void, enabled?: boolean): { listening: boolean; transcript: string; start: () => void; stop: () => void; }; export { useVoiceCommand };