import { QuarantineEntry } from '../types.js'; export declare class HallucinationQuarantine { private entries; private brain; private initialized; constructor(); init(): Promise; flag(source: string, claim: string, reasonFlagged: string, evidence?: string[]): Promise; promote(entryId: string, projectId: string, agentTool: string): Promise; reject(entryId: string): Promise; list(opts?: { pendingOnly?: boolean; limit?: number; }): QuarantineEntry[]; stats(): { pending: number; promoted: number; deleted: number; total: number; }; private autoExpire; private persist; } export declare function getHallucinationQuarantine(): HallucinationQuarantine; export declare function resetHallucinationQuarantineForTests(): void; //# sourceMappingURL=hallucination-quarantine.d.ts.map