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