export interface ClassificationResult { readonly success: true; readonly classification: string; readonly reasoning?: string | undefined; readonly confidence?: number | undefined; } export interface ClassificationError { readonly success: false; readonly error: string; } /** * Parses a classification response from the judge LLM. * Uses the same 3-layer fallback strategy as judge-parser.ts. * Validates that the classification is one of the valid categories. */ export declare function parseClassificationResponse(text: string, validCategories: readonly string[]): ClassificationResult | ClassificationError; //# sourceMappingURL=classify-parser.d.ts.map