//#region extensions/crypto/src/commands/policy-command.d.ts /** * /policy command — set spending policies in natural language * Bypasses the LLM agent for fast, zero-cost responses. */ declare const policyCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: { args?: string; }) => Promise<{ text: string; }>; }; //#endregion export { policyCommand }; //# sourceMappingURL=policy-command.d.mts.map