/** * Replay Session Tool * * Replays user interactions from a recorded Logspace session in a real browser. * This allows developers to reproduce bugs by automatically performing the same * clicks, inputs, and navigation that led to the issue. */ import { z } from 'zod'; export declare const ReplaySessionSchema: z.ZodObject<{ bugId: z.ZodUnion<[z.ZodNumber, z.ZodString]>; startUrl: z.ZodOptional; speed: z.ZodDefault>>; stopOnError: z.ZodDefault>; headless: z.ZodDefault>; }, "strip", z.ZodTypeAny, { bugId: string | number; speed: "slow" | "normal" | "fast"; stopOnError: boolean; headless: boolean; startUrl?: string | undefined; }, { bugId: string | number; startUrl?: string | undefined; speed?: "slow" | "normal" | "fast" | undefined; stopOnError?: boolean | undefined; headless?: boolean | undefined; }>; export declare function replaySession(args: z.infer): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: ({ type: string; text: string; data?: undefined; mimeType?: undefined; } | { type: string; data: any; mimeType: string; text?: undefined; })[]; isError?: undefined; }>; //# sourceMappingURL=replaySession.d.ts.map