import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type MoveAction = { type: "move"; x: number; y: number; }; /** @internal */ export declare const MoveAction$inboundSchema: z.ZodType; /** @internal */ export type MoveAction$Outbound = { type: "move"; x: number; y: number; }; /** @internal */ export declare const MoveAction$outboundSchema: z.ZodType; export declare function moveActionToJSON(moveAction: MoveAction): string; export declare function moveActionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=moveaction.d.ts.map