/** * `tryassay watch` — Real-time verified code generation. * * Streams code from the LLM through the verification pipeline, * catching bugs as code is generated rather than after. * * Usage: * echo "Write a function that queries users by email" | tryassay watch --lang typescript * tryassay watch --lang typescript --prompt "Write a REST API handler for /users/:id" */ export declare function watchCommand(options: { lang?: string; language?: string; prompt?: string; model?: string; maxTokens?: string; correct?: boolean; projectPath?: string; }): Promise;