export type SetupComponent = "python" | "stt"; export interface SetupCommandArgs { component: SetupComponent; flags: { json?: boolean; check?: boolean; }; } /** * Parse setup subcommand arguments. * Returns undefined if not a setup command. */ export declare function parseSetupArgs(args: string[]): SetupCommandArgs | undefined; /** * Install Python packages using uv (preferred) or pip. */ /** * Run the setup command. */ export declare function runSetupCommand(cmd: SetupCommandArgs): Promise; /** * Print setup command help. */ export declare function printSetupHelp(): void;