import type { AssayConfig, HallucinationType, VerificationReport, ExtractionResult } from '../types.js'; export declare function getSystemPrompt(type: HallucinationType, config: AssayConfig): string; export declare function getUserPrompt(type: HallucinationType, config: AssayConfig): string; export interface RegenerationContext { config: AssayConfig; type: HallucinationType; priorDocument: string; extraction: ExtractionResult; verification: VerificationReport; } export declare function getRegenerationSystemPrompt(ctx: RegenerationContext): string; export declare function getRegenerationUserPrompt(ctx: RegenerationContext): string;