import * as z from "zod"; import { ElementTarget, ElementTarget$Outbound } from "./elementtarget.js"; import { SingleTargetCache, SingleTargetCache$Outbound } from "./singletargetcache.js"; export type HoverCommand = { 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?: "HOVER" | undefined; target: ElementTarget; cache?: SingleTargetCache | undefined; }; /** @internal */ export declare const HoverCommand$inboundSchema: z.ZodType; /** @internal */ export type HoverCommand$Outbound = { thoughts?: string | undefined; id: string; useSelector?: boolean | undefined; force?: boolean | undefined; disableCache?: boolean | undefined; iframeUrl?: string | undefined; type: "HOVER"; target: ElementTarget$Outbound; cache?: SingleTargetCache$Outbound | undefined; }; /** @internal */ export declare const HoverCommand$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 HoverCommand$ { /** @deprecated use `HoverCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HoverCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HoverCommand$Outbound` instead. */ type Outbound = HoverCommand$Outbound; } //# sourceMappingURL=hovercommand.d.ts.map