import type { HazoConnect } from "../hazo_connect/types.js"; import type { Logger } from "../llm_api/types.js"; import type { UsageSummaryOptions, UsageSummaryResponse, ApiLogRow } from "./types.js"; interface QueryOpts { connect: HazoConnect; logger: Logger; } /** Returns aggregated counts/cost across hazo_llm_api_log, optionally grouped + filtered. */ export declare function get_llm_usage_summary(opts: QueryOpts & UsageSummaryOptions): Promise; /** Returns the full log row for a given id, or null if absent. */ export declare function get_llm_call_detail(opts: QueryOpts & { id: string; }): Promise; export {}; //# sourceMappingURL=queries.d.ts.map