//#region extensions/crypto/src/commands/wallet-manage-commands.d.ts /** * Wallet management commands — recover, export, and backup encrypted wallets. * * These commands work with the keychain-wallet service for local wallet * management (BIP-39 mnemonic + scrypt/AES-256-GCM encryption). */ /** * Two-phase command: * Phase 1: /recover (no args) — prompts for mnemonic * Phase 2: /recover — executes recovery * * In practice, the LLM agent will collect the mnemonic and password * from the user in conversation, then call this with args. */ declare const recoverCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (_ctx: any, args?: string) => Promise<{ text: string; }>; }; declare const exportWalletCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (_ctx: any, args?: string) => Promise<{ text: string; }>; }; declare const walletBackupCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (_ctx: any, args?: string) => Promise<{ text: string; }>; }; //#endregion export { exportWalletCommand, recoverCommand, walletBackupCommand }; //# sourceMappingURL=wallet-manage-commands.d.mts.map