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