import * as z from "zod"; export type CaptchaCommand = { thoughts?: string | undefined; /** * unique identifier to this step, used for step cache */ id: string; useSelector?: boolean | undefined; force?: boolean | undefined; /** * disable element caching for this step */ disableCache?: boolean | undefined; /** * url or url regex for the iframe */ iframeUrl?: string | undefined; type?: "CAPTCHA" | undefined; }; /** @internal */ export declare const CaptchaCommand$inboundSchema: z.ZodType; /** @internal */ export type CaptchaCommand$Outbound = { thoughts?: string | undefined; id: string; useSelector?: boolean | undefined; force?: boolean | undefined; disableCache?: boolean | undefined; iframeUrl?: string | undefined; type: "CAPTCHA"; }; /** @internal */ export declare const CaptchaCommand$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 CaptchaCommand$ { /** @deprecated use `CaptchaCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CaptchaCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CaptchaCommand$Outbound` instead. */ type Outbound = CaptchaCommand$Outbound; } //# sourceMappingURL=captchacommand.d.ts.map