//#region extensions/crypto/src/commands/setup-command.d.ts /** * /setup — Show tool configuration status and setup instructions. * * Groups tools into: * - Ready (configured and working) * - Needs wallet (requires /connect first) * - Needs API keys (with setup instructions) * * All output uses tappable slash commands where possible. */ declare const setupCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (_ctx: any) => Promise<{ text: string; }>; }; //#endregion export { setupCommand }; //# sourceMappingURL=setup-command.d.mts.map