/** * `fourmm config` command group — manage ~/.fourmm/config.json. * * Subcommands: * - init: create config file with defaults (or overrides) * - set : update a single value * - get [key]: read one value or the whole config */ import { Cli } from 'incur'; export declare const config: Cli.Cli<{ init: { args: {}; options: { rpcUrl?: string | undefined; network?: "bsc" | "bsc-testnet" | undefined; slippageBps?: number | undefined; }; }; } & { set: { args: { key: string; value: string; }; options: {}; }; } & { get: { args: {}; options: { key?: string | undefined; }; }; }, undefined, undefined>; //# sourceMappingURL=config.d.ts.map