import { Command } from 'commander'; import { type GlobalFlags } from '../output.js'; type GF = () => GlobalFlags; /** * Binary subcommand: thin shim around cloakbrowser's JS API * (ensureBinary, binaryInfo, clearCache). The cloakbrowser package * also exposes a Python `python -m cloakbrowser` CLI; this command * uses the JS surface so it works on Node-only installs. */ export declare function buildBinaryCmd(g: GF): Command; /** * `cloak serve` — spawn cloakserve via Python module (cloakbrowser's official CDP server). * Requires Python install of cloakbrowser. For pure-Node use cases, agents can still use * `cloak session new` + `cloak goto ...`. */ export declare function buildServeCmd(g: GF): Command; export declare function buildConnectCmd(g: GF): Command; export {}; //# sourceMappingURL=binary.d.ts.map