//#region extensions/crypto/src/commands/reset-command.d.ts /** * /reset command — wipe onboarding state, sessions, WC pairing, and credentials. * Requires double confirmation: /reset → /reset confirm * * After reset, the next message from any user triggers pairing + onboarding again. */ declare const resetCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; /** Tappable alias for /factoryreset confirm. */ declare const resetConfirmCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; //#endregion export { resetCommand, resetConfirmCommand }; //# sourceMappingURL=reset-command.d.mts.map