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