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