import * as z from "zod"; import { ElementTarget, ElementTarget$Outbound } from "./elementtarget.js"; import { ManualElementAssertion, ManualElementAssertion$Outbound } from "./manualelementassertion.js"; import { SingleTargetCache, SingleTargetCache$Outbound } from "./singletargetcache.js"; export type ElementAssertionCommand = { 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?: "ELEMENT_CHECK" | undefined; target: ElementTarget; assertion: ManualElementAssertion; cache?: SingleTargetCache | undefined; /** * max seconds to wait for the assertion to be true */ timeout?: number | undefined; }; /** @internal */ export declare const ElementAssertionCommand$inboundSchema: z.ZodType; /** @internal */ export type ElementAssertionCommand$Outbound = { thoughts?: string | undefined; id: string; useSelector?: boolean | undefined; force?: boolean | undefined; disableCache?: boolean | undefined; iframeUrl?: string | undefined; type: "ELEMENT_CHECK"; target: ElementTarget$Outbound; assertion: ManualElementAssertion$Outbound; cache?: SingleTargetCache$Outbound | undefined; timeout?: number | undefined; }; /** @internal */ export declare const ElementAssertionCommand$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 ElementAssertionCommand$ { /** @deprecated use `ElementAssertionCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ElementAssertionCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ElementAssertionCommand$Outbound` instead. */ type Outbound = ElementAssertionCommand$Outbound; } //# sourceMappingURL=elementassertioncommand.d.ts.map