//#region extensions/crypto/src/commands/agent-account-command.d.ts /** * /delegator — Agent account lifecycle management. * * Subcommands: * /delegator create — deploy a HybridDeleGator smart account * /delegator fund — show the agent account address for funding * /delegator status — show balance, delegation status, account info * /delegator recover — restore agent key from backup * * The agent account is a HybridDeleGator smart account owned by the user. * The agent holds a delegate key for autonomous execution within policy limits. * User funds the account explicitly — blast radius is limited to deposited funds. */ declare const agentAccountCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx?: any) => Promise<{ text: string; }>; }; //#endregion export { agentAccountCommand }; //# sourceMappingURL=agent-account-command.d.mts.map