import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ScrollAction = { type: "scroll"; scrollX: number; scrollY: number; x: number; y: number; }; /** @internal */ export declare const ScrollAction$inboundSchema: z.ZodType; /** @internal */ export type ScrollAction$Outbound = { type: "scroll"; scroll_x: number; scroll_y: number; x: number; y: number; }; /** @internal */ export declare const ScrollAction$outboundSchema: z.ZodType; export declare function scrollActionToJSON(scrollAction: ScrollAction): string; export declare function scrollActionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=scrollaction.d.ts.map