//#region extensions/crypto/src/commands/usage-command.d.ts /** * /usage — LLM usage and cost reporting. * * Provider-aware: shows real data for Bankr, directs to dashboard for others. * Replaces the Bankr-only /llmcost with a unified command. * * Subcommands: * /usage — usage summary for active provider * /usage pricing — show model pricing reference * /usage 7 — Bankr usage for past N days (default 30) */ declare const usageNewCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; //#endregion export { usageNewCommand }; //# sourceMappingURL=usage-command.d.mts.map