import { PersonaId } from "../services/onboarding-flow.mjs"; //#region extensions/crypto/src/commands/onboarding-commands.d.ts declare const professionalCommand: { name: PersonaId; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; declare const degenCommand: { name: PersonaId; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; declare const chillCommand: { name: PersonaId; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; declare const technicalCommand: { name: PersonaId; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; declare const mentorCommand: { name: PersonaId; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; declare const capAllCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; declare const capCommands: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }[]; declare const createWalletCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; declare const importWalletCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; declare const backCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; declare const skipCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; declare const restartCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; //#endregion export { backCommand, capAllCommand, capCommands, chillCommand, createWalletCommand, degenCommand, importWalletCommand, mentorCommand, professionalCommand, restartCommand, skipCommand, technicalCommand }; //# sourceMappingURL=onboarding-commands.d.mts.map