export declare function getRecorderInstallHint(platform?: NodeJS.Platform): string; export declare function formatSTTUsage(platform?: NodeJS.Platform, terminalProgram?: string | undefined): string; 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;