import * as z from "zod"; export type PressCommand = { thoughts?: string | undefined; /** * unique identifier to this step, used for step cache */ id: string; type?: "PRESS" | undefined; value: string; }; /** @internal */ export declare const PressCommand$inboundSchema: z.ZodType; /** @internal */ export type PressCommand$Outbound = { thoughts?: string | undefined; id: string; type: "PRESS"; value: string; }; /** @internal */ export declare const PressCommand$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PressCommand$ { /** @deprecated use `PressCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PressCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PressCommand$Outbound` instead. */ type Outbound = PressCommand$Outbound; } //# sourceMappingURL=presscommand.d.ts.map