/** * Open files event types and schemas */ import { z } from 'zod'; /** * Single file open request */ declare const FileOpenRequestSchema: z.ZodObject<{ filePath: z.ZodString; showEditor: z.ZodDefault>; }, z.core.$strict>; /** * Single file open result */ declare const FileOpenResultSchema: z.ZodObject<{ filePath: z.ZodString; success: z.ZodBoolean; message: z.ZodOptional; }, z.core.$strict>; /** * Open files input schema */ export declare const OpenFilesInputSchema: z.ZodObject<{ files: z.ZodArray>; }, z.core.$strict>>; }, z.core.$strict>; /** * Open files output schema */ export declare const OpenFilesOutputSchema: z.ZodObject<{ results: z.ZodArray; }, z.core.$strict>>; }, z.core.$strict>; /** * Open files payload (input parameters) */ export type OpenFilesPayload = z.infer; /** * Open files result (output data) */ export type OpenFilesResult = z.infer; /** * Individual file open request type */ export type FileOpenRequest = z.infer; /** * Individual file open result type */ export type FileOpenResult = z.infer; export {}; //# sourceMappingURL=open-file.d.ts.map