/** * Execute command event types and schemas */ import { z } from 'zod'; /** * Execute command input schema */ export declare const ExecuteCommandInputSchema: z.ZodObject<{ command: z.ZodString; args: z.ZodOptional; saveAllEditors: z.ZodDefault>; }, z.core.$strict>; /** * Execute command output schema */ export declare const ExecuteCommandOutputSchema: z.ZodObject<{ result: z.ZodUnknown; }, z.core.$strict>; /** * Execute command payload (input parameters) */ export type ExecuteCommandPayload = z.infer; /** * Execute command result (output data) */ export type ExecuteCommandResult = z.infer; //# sourceMappingURL=execute-command.d.ts.map