import * as z from "zod"; export type CookieCommand = { thoughts?: string | undefined; /** * unique identifier to this step, used for step cache */ id: string; type?: "COOKIE" | undefined; value: string; }; /** @internal */ export declare const CookieCommand$inboundSchema: z.ZodType; /** @internal */ export type CookieCommand$Outbound = { thoughts?: string | undefined; id: string; type: "COOKIE"; value: string; }; /** @internal */ export declare const CookieCommand$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 CookieCommand$ { /** @deprecated use `CookieCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CookieCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CookieCommand$Outbound` instead. */ type Outbound = CookieCommand$Outbound; } //# sourceMappingURL=cookiecommand.d.ts.map