import * as z from "zod"; import { ElementTarget, ElementTarget$Outbound } from "./elementtarget.js"; import { SingleTargetCache, SingleTargetCache$Outbound } from "./singletargetcache.js"; export type ScrollRightCommand = { 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_RIGHT" | undefined; deltaX?: number | undefined; }; /** @internal */ export declare const ScrollRightCommand$inboundSchema: z.ZodType; /** @internal */ export type ScrollRightCommand$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_RIGHT"; deltaX?: number | undefined; }; /** @internal */ export declare const ScrollRightCommand$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 ScrollRightCommand$ { /** @deprecated use `ScrollRightCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ScrollRightCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ScrollRightCommand$Outbound` instead. */ type Outbound = ScrollRightCommand$Outbound; } //# sourceMappingURL=scrollrightcommand.d.ts.map