import { Command } from 'commander'; type NumericBounds = { maxNotionalPerOrderUsd?: number; maxNotionalPerDayUsd?: number; }; /** Intersect the manifest and CLI/policy caps. A convenience leash can narrow, * but never expand, either manifest axis. */ export declare function effectiveInstallBounds(manifestBounds: NumericBounds | undefined, leashBounds: NumericBounds): NumericBounds; /** * `flows deploy` — the spine verb. Deploy a fund action to your wallet: * check it against your policy (plan), install it in DRYRUN, then run the exact * deployed proposer/executor path once. The wallet is * Flows-managed today; the gate refuses out-of-policy moves either way. * New installs start in dry-run so you can verify them, then promote to go live. * The same loop the Deploy page runs, in the terminal. */ export declare const deployCommand: Command; export {};