import * as z from "zod"; export type NavigateCommand = { 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?: "NAVIGATE" | undefined; url: string; }; /** @internal */ export declare const NavigateCommand$inboundSchema: z.ZodType; /** @internal */ export type NavigateCommand$Outbound = { thoughts?: string | undefined; id: string; loadTimeout?: number | undefined; type: "NAVIGATE"; url: string; }; /** @internal */ export declare const NavigateCommand$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 NavigateCommand$ { /** @deprecated use `NavigateCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `NavigateCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `NavigateCommand$Outbound` instead. */ type Outbound = NavigateCommand$Outbound; } //# sourceMappingURL=navigatecommand.d.ts.map