import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Path = { x: number; y: number; }; export type DragAction = { type: "drag"; path: Array; }; /** @internal */ export declare const Path$inboundSchema: z.ZodType; /** @internal */ export type Path$Outbound = { x: number; y: number; }; /** @internal */ export declare const Path$outboundSchema: z.ZodType; export declare function pathToJSON(path: Path): string; export declare function pathFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DragAction$inboundSchema: z.ZodType; /** @internal */ export type DragAction$Outbound = { type: "drag"; path: Array; }; /** @internal */ export declare const DragAction$outboundSchema: z.ZodType; export declare function dragActionToJSON(dragAction: DragAction): string; export declare function dragActionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=dragaction.d.ts.map