/** * AgentGuard(TM) Spend: local Advisor anomaly review skeleton. * * Reads local decision logs only. No network calls are made. * * Patent notice: Protected by U.S. patent-pending technology * (App. Nos. 63/983,615; 63/983,621; 63/983,843; 63/984,626; * 64/071,781; 64/071,789). */ export interface AdvisorSpendPoint { ts: string; scope: string; agentId: string; cents: number; } export interface AdvisorAnomaly { scope: string; agentId: string; last24hCents: number; baselineCents: number; sigmaCents: number; suggestion: string; } export declare function readDecisionSpend(scope?: string, home?: string): AdvisorSpendPoint[]; export declare function reviewAnomalies(points: AdvisorSpendPoint[], now?: Date): AdvisorAnomaly[]; //# sourceMappingURL=anomaly.d.ts.map