import { EvalsResult, EvalsInput } from './types';
export declare function parseLlmResponse(response: string): EvalsResult;
export declare function formatPrompt(systemPrompt: string, input: EvalsInput): string;
export declare function formatCustomCategories(customCategories?: Record<string, string>, sectionLabel?: string): string;
