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