import type { Command } from 'commander'; import type { ApiFactory } from '../config.js'; import type { GlobalOptions } from '../types.js'; /** * Registers the `key` command group for managing keypairs in the encrypted * keystore. All subcommands operate offline (no Bitcoin connection) through the * keystore-backed KeyManager injected by the factory. */ export declare function registerKeyCommand(program: Command, factory: ApiFactory, globals: () => GlobalOptions): void; //# sourceMappingURL=key.d.ts.map