import type { Argv } from "yargs"; type RunArgv = { path: string; verbose: boolean; /** `--debug`: write the `.telo.debug.jsonl` event log. No network, no UI. */ debug: boolean; /** `--inspect[=[host:]port]`: start the live inspection endpoint. `undefined` * when the flag is absent; the (possibly empty) string value otherwise. */ inspect?: string; /** `--no-open`: with `--inspect`, don't auto-open the UI in a browser. */ open: boolean; snapshotOnExit: boolean; watch: boolean; /** `--no-cache-write`: read the baked cache but never persist derived entries. */ cacheWrite: boolean; registryUrl?: string; "--"?: string[]; }; export declare function run(argv: RunArgv): Promise; export declare function runCommand(yargs: Argv): Argv; export {}; //# sourceMappingURL=run.d.ts.map