//#region extensions/crypto/src/commands/wallet-command.d.ts /** * /wallet command — show connected wallet status * Bypasses the LLM agent for fast, zero-cost responses. */ declare const walletCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: () => Promise<{ text: string; }>; }; //#endregion export { walletCommand }; //# sourceMappingURL=wallet-command.d.mts.map