import { Source, ContextResult } from './types'; export declare class LLMJudge { private openai?; private anthropic?; private provider; private developerMode; private openaiModel; private claudeModel; constructor(openaiApiKey?: string, claudeApiKey?: string, developerMode?: boolean, openaiModel?: string, claudeModel?: string); validateContext(query: string, response: string, sources: Source[]): Promise; private buildValidationPrompt; private callOpenAI; private callClaude; private parseValidationResult; } //# sourceMappingURL=LLMJudge.d.ts.map