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