import { z } from 'zod'; export declare const GetErrorContextSchema: z.ZodObject<{ bugId: z.ZodUnion<[z.ZodNumber, z.ZodString]>; errorIndex: z.ZodOptional>; }, "strip", z.ZodTypeAny, { bugId: string | number; errorIndex?: string | number | undefined; }, { bugId: string | number; errorIndex?: string | number | undefined; }>; export declare function getErrorContext(args: z.infer): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=getErrorContext.d.ts.map