//#region extensions/crypto/src/commands/policymode-command.d.ts /** * /policymode — Switch between delegation and simple policy enforcement modes. * * Usage: * /policymode — show current mode * /policymode delegation — switch to delegation mode (on-chain, default) * /policymode simple — switch to simple mode (app-layer only) * * Delegation mode: policies compile to EIP-7710 on-chain delegations. * The agent redeems delegations through the DelegationManager contract. * Requires a smart account or EIP-7702 wallet for full enforcement. * * Simple mode: policies are natural-language rules enforced at the app layer. * No on-chain delegation, no signing, no smart account required. * Works with any wallet. Good for getting started or when you don't need * on-chain enforcement. */ declare const policymodeCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx?: any) => Promise<{ text: string; }>; }; //#endregion export { policymodeCommand }; //# sourceMappingURL=policymode-command.d.mts.map