/** * daemon/budget-cli.ts — `aibroker budget`, the lever on the spending ceiling. * * The ceiling itself is two small pieces: a UserPromptSubmit hook that refuses * new prompts once the weekly percentage crosses a line, and a periodic script * that stands working sessions down with a handover first and back up when the * window resets. Both read one JSON file, and this command is how a person * edits that file without having to remember where it lives or what shape it * is. * * It exists because of WHO has to use it and WHEN. The moment the ceiling * bites, the sessions that could have edited a config are exactly the ones * being refused, so the lever has to work from a bare shell, in one line, from * any directory — and it has to be findable by someone who last thought about * this a week ago. `aibroker budget off` is that; a node -e incantation with a * quoted path in it is not. */ export declare function runBudget(args: string[]): Promise; //# sourceMappingURL=budget-cli.d.ts.map