//#region extensions/crypto/src/commands/policies-command.d.ts /** * /policies — User-facing command for viewing and managing spending policies. * * Subcommands: * /policies — list all policies with their rules * /policies — view a specific policy * /policies enable * /policies disable * /policies delete * * Policy CREATION is handled conversationally via the policy_manage tool. * Users just say what they want in plain English; the agent interprets. */ declare const policiesCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx?: any) => Promise<{ text: string; }>; }; //#endregion export { policiesCommand }; //# sourceMappingURL=policies-command.d.mts.map