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