import type { Database } from "../client.js"; export declare function detectionResultQueries(db: Database): { create(data: { agentId?: string | null; safe: boolean; categories: string[]; sensitivityScore: number; findings: unknown[]; latencyMs: number; requestId: string; tenantId?: string; }): Promise; findAll(options?: { limit?: number; offset?: number; tenantId?: string; }): Promise; findByAgentId(agentId: string, options?: { limit?: number; offset?: number; tenantId?: string; }): Promise; }; //# sourceMappingURL=detection-results.d.ts.map