import { HallucinationResult, Source } from './types'; export declare class HallucinationDetector { private openai?; private claude?; constructor(openaiApiKey?: string, claudeApiKey?: string); detectHallucination(response: string, sources: Source[], llmProvider: 'openai' | 'claude', model?: string): Promise; private parseLLMResponse; private detectHallucinationWithOpenAI; private detectHallucinationWithClaude; } //# sourceMappingURL=HallucinationDetector.d.ts.map