/** * The one thing to run. * * There were four audit tools before this and no obvious entry point, which is * precisely the gap the competing product's users describe about its six * agents. This is not a fifth report: it collects every finding the other * surfaces can produce -- waste detectors, cache attribution, routing -- ranks * them by measured cost per session, prices them, and hands back a queue where * each line names what to do about it. * * The specialised tools remain, for when you want the whole cache picture or * the full routing table. This is what you run when you do not know which of * them to run. */ export declare function tokenAudit(input: { full?: boolean; tier?: string; sessionsPerMonth?: number; decline?: string; }): Promise<{ content: Array<{ type: string; text: string; }>; isError?: boolean; }>; export declare const AUDIT_TOOL: { readonly name: "token_audit"; readonly description: string; readonly inputSchema: { readonly type: "object"; readonly properties: { readonly full: { readonly type: "boolean"; readonly description: "Show every finding, including ones cheaper than printing them"; }; readonly tier: { readonly type: "string"; readonly description: "Pricing tier for the dollar figures (haiku, sonnet, opus). Default opus"; }; readonly sessionsPerMonth: { readonly type: "number"; readonly description: "Assumption behind the monthly figures. Default 60"; }; readonly decline: { readonly type: "string"; readonly description: "A finding id you do not want raised again"; }; }; }; }; //# sourceMappingURL=audit-tool.d.ts.map