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