import * as z from "zod"; export type WaitUrlCommand = { thoughts?: string | undefined; /** * unique identifier to this step, used for step cache */ id: string; type?: "WAIT_FOR_URL" | undefined; /** * Deprecated: url or glob to wait for. New commands should use the discriminated matcher field. */ url: string; /** * Whether to ignore case when matching the URL */ caseInsensitive?: boolean | undefined; /** * Wait for the URL to NOT match the provided matcher instead. */ negated?: boolean | undefined; /** * Max seconds to wait for the URL to match */ timeout?: number | undefined; }; /** @internal */ export declare const WaitUrlCommand$inboundSchema: z.ZodType; /** @internal */ export type WaitUrlCommand$Outbound = { thoughts?: string | undefined; id: string; type: "WAIT_FOR_URL"; url: string; caseInsensitive?: boolean | undefined; negated?: boolean | undefined; timeout?: number | undefined; }; /** @internal */ export declare const WaitUrlCommand$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 WaitUrlCommand$ { /** @deprecated use `WaitUrlCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WaitUrlCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WaitUrlCommand$Outbound` instead. */ type Outbound = WaitUrlCommand$Outbound; } //# sourceMappingURL=waiturlcommand.d.ts.map