import Anthropic from '@anthropic-ai/sdk'; import type { HallucinationType } from '../types.js'; import type { AssayConfig } from '../types.js'; import type { RegenerationContext } from './system-prompts.js'; export declare const MODEL = "claude-sonnet-4-6"; export declare function getClient(): Anthropic; export interface StreamResult { content: string; inputTokens: number; outputTokens: number; } export declare function streamHallucination(config: AssayConfig, type: HallucinationType): Promise; export declare function streamRegeneration(ctx: RegenerationContext, opts?: { temperature?: number; quiet?: boolean; }): Promise;