import * as z from "zod"; import { A11yTargetWithCache, A11yTargetWithCache$Outbound } from "./a11ytargetwithcache.js"; import { ElementTarget, ElementTarget$Outbound } from "./elementtarget.js"; export type Cache = { fromTarget?: A11yTargetWithCache | undefined; toTarget?: A11yTargetWithCache | undefined; }; export type DragCommand = { 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?: "DRAG" | undefined; fromTarget: ElementTarget; toTarget: ElementTarget; /** * Seconds to hover the object before dropping */ hoverSeconds?: number | undefined; cache?: Cache | undefined; }; /** @internal */ export declare const Cache$inboundSchema: z.ZodType; /** @internal */ export type Cache$Outbound = { fromTarget?: A11yTargetWithCache$Outbound | undefined; toTarget?: A11yTargetWithCache$Outbound | undefined; }; /** @internal */ export declare const Cache$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 Cache$ { /** @deprecated use `Cache$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Cache$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Cache$Outbound` instead. */ type Outbound = Cache$Outbound; } /** @internal */ export declare const DragCommand$inboundSchema: z.ZodType; /** @internal */ export type DragCommand$Outbound = { thoughts?: string | undefined; id: string; useSelector?: boolean | undefined; force?: boolean | undefined; disableCache?: boolean | undefined; iframeUrl?: string | undefined; type: "DRAG"; fromTarget: ElementTarget$Outbound; toTarget: ElementTarget$Outbound; hoverSeconds?: number | undefined; cache?: Cache$Outbound | undefined; }; /** @internal */ export declare const DragCommand$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 DragCommand$ { /** @deprecated use `DragCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DragCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DragCommand$Outbound` instead. */ type Outbound = DragCommand$Outbound; } //# sourceMappingURL=dragcommand.d.ts.map