/** * `photon cf` — inspect and edit a photon's CF binding overrides. * * The override JSON layers on top of `protected cfBindings` so users can * repoint a binding (e.g., point `kv: cache` at a different namespace) * without editing photon source. This command surface is intentionally * thin; the heavier "create resource", "test connection", and Beam UI * panel land in later phases. * * Examples: * photon cf bindings my-photon # show declared + override * photon cf set my-photon kv.cache prod-cache # repoint a binding * photon cf set my-photon ai true # toggle a boolean opt-in * photon cf reset my-photon # drop the override */ import type { Command } from 'commander'; export declare function registerCfCommands(program: Command): void; //# sourceMappingURL=cf.d.ts.map