export interface STTDependencyStatus { recorder: { available: boolean; tool: string | null; installHint: string; }; python: { available: boolean; path: string | null; installHint: string; }; whisper: { available: boolean; installHint: string; }; } export declare function checkDependencies(): Promise; export declare function formatDependencyStatus(status: STTDependencyStatus): string;