//#region extensions/crypto/src/commands/profile-command.d.ts /** * /profile — Graduated autonomy profiles. * * Usage: * /profile — show current profile + list available * /profile — activate a profile (supervised|training|autonomous|custom) * /profile off — deactivate profile, revert to supervised * * Profiles are preset delegation configurations: * supervised — all actions require wallet approval (default) * training — $50/tx, $200/day, 10 actions/day, 24h expiry * autonomous — $500/tx, $2k/week, 50 actions/day, 30d expiry * custom — user-defined policies (no preset rules) */ declare const profileCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx?: any) => Promise<{ text: string; }>; }; //#endregion export { profileCommand }; //# sourceMappingURL=profile-command.d.mts.map