/** * `ruflo proxy` — Meta LLM Proxy control surface (ADR-304/307/313). * * This command currently implements the ADR-313 sponsored-downtime * subcommands only (`sponsor-enable` / `sponsor-disable` / `sponsor-status`). * The full lifecycle command set ADR-307 specifies * (`install|start|stop|status|logs|update|uninstall`) manages the proxy * *process* itself and is out of scope here — this surface only manages * the consent-gated sponsored-mode flag the already-running proxy reads * from its config mirror. * * Consent (ADR-302/313): granting `sponsored-downtime` consent here writes * BOTH the ruflo-side consent receipt (source of truth) AND a mirror flag * into ~/.ruflo/proxy-config.toml (the file the Rust proxy binary reads). * The proxy never writes this file — ruflo does, exactly once per * enable/disable action. */ import type { Command } from '../types.js'; export declare const proxyCommand: Command; export default proxyCommand; //# sourceMappingURL=proxy.d.ts.map