import { z } from 'zod'; export declare const AgentUsage: z.ZodObject<{ totalTokens: z.ZodOptional; updatedAt: z.ZodOptional; }, z.core.$strip>; export type AgentUsage = z.infer; export declare class AgentUsageStore { private readonly file; constructor(agentId: string); read(): Promise; update(op: (current: AgentUsage) => AgentUsage | Promise): Promise; } //# sourceMappingURL=agent-usage.store.d.ts.map