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