import type { DevToolsSys } from "../types"; import type { CLIArgs } from "./index"; import { type UserContext } from "#ai-utils"; export declare const runCodeCommand: (sys: DevToolsSys, subCommand: string, args: CLIArgs) => Promise; export declare const runCodeGen: (sys: DevToolsSys, args: CLIArgs) => Promise; export declare function checkProjectRoot(sys: DevToolsSys, interactive: boolean): Promise; export declare function getUserContext(sys: DevToolsSys): Promise;