/** * cv interview — interactive AI mock interview with real-time voice audio. * * Usage: * cv interview Prompt for role interactively (voice mode) * cv interview --role "Sr SWE" Specify role directly (voice mode) * cv interview --role "PM" --text Text-only fallback (no audio required) * cv interview --role "SDE" --resume Load resume for context * * Voice mode requires sox (handles both mic input and speaker output): * macOS: brew install sox * Linux: sudo apt install sox * * AI calls: * - Token vend: cliGetInterviewToken Cloud Function (validates cv_live_ key, deducts credits) * - Voice session: gemini-3.1-flash-live-preview via @google/genai Live API (direct WebSocket) * - Feedback: agentProxy Cloud Function (standard HTTP, existing pattern) */ import { Command } from "commander"; export declare function registerInterviewCommand(program: Command): void; //# sourceMappingURL=interview.d.ts.map