import { z } from "zod"; /** * The "editInteraction" event is sent whenever the user submits an input in edit mode and the model's response is completed */ export declare const editInteractionEventAllSchema: z.ZodObject<{ eventName: z.ZodString; schema: z.ZodString; timestamp: z.ZodString; userId: z.ZodString; userAgent: z.ZodString; selectedProfileId: z.ZodString; } & { modelProvider: z.ZodString; modelName: z.ZodString; modelTitle: z.ZodString; prompt: z.ZodString; completion: z.ZodString; filepath: z.ZodString; }, "strip", z.ZodTypeAny, { eventName: string; schema: string; timestamp: string; userId: string; userAgent: string; selectedProfileId: string; prompt: string; completion: string; modelProvider: string; modelName: string; filepath: string; modelTitle: string; }, { eventName: string; schema: string; timestamp: string; userId: string; userAgent: string; selectedProfileId: string; prompt: string; completion: string; modelProvider: string; modelName: string; filepath: string; modelTitle: string; }>;