import { ZodSchema } from 'zod'; interface GroqAPIError extends Error { status?: number; response?: { body?: any; text?: string; }; } export declare class ParseFailedGenerationError extends Error { originalError?: Error | undefined; constructor(message: string, originalError?: Error | undefined); } export declare function tryParseGroqFailedGeneration(error: GroqAPIError, outputFormat: ZodSchema): T; export {}; //# sourceMappingURL=parser.d.ts.map