/** * `fourmm wallet` command group — manage in-house wallet groups. * * These wallets live in ~/.fourmm/wallets/, encrypted with a master password, * and are designed for batch operations (sniper groups, volume bots). * * Week 1 scope: create-group, list-groups. The other 9 wallet commands * (generate, group-info, add, import, export, etc.) are Week 2. */ import { Cli } from 'incur'; export declare const wallet: Cli.Cli<{ "create-group": { args: {}; options: { name: string; count: number; note?: string | undefined; password?: string | undefined; }; }; } & { generate: { args: {}; options: { group: number; count: number; password?: string | undefined; }; }; } & { add: { args: {}; options: { group: number; privateKey: string; note?: string | undefined; password?: string | undefined; }; }; } & { "group-info": { args: {}; options: { id: number; showKeys: boolean; password?: string | undefined; }; }; } & { "list-groups": { args: {}; options: { password?: string | undefined; }; }; } & { "delete-group": { args: {}; options: { id: number; force: boolean; password?: string | undefined; }; }; } & { remove: { args: {}; options: { group: number; address: string; password?: string | undefined; }; }; } & { import: { args: {}; options: { group: number; file: string; password?: string | undefined; }; }; } & { export: { args: {}; options: { group: number; file: string; password?: string | undefined; }; }; } & { "export-group": { args: {}; options: { file: string; encrypt: boolean; password?: string | undefined; }; }; } & { overview: { args: {}; options: { groups: string; token?: string | undefined; password?: string | undefined; }; }; }, undefined, undefined>; //# sourceMappingURL=wallet.d.ts.map