export type AuthorizationStatus = "authorized" | "denied" | "restricted" | "notDetermined"; export interface SpeechRecognitionResult { text: string; isFinal: boolean; }