import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const Button: { readonly Left: "left"; readonly Right: "right"; readonly Wheel: "wheel"; readonly Back: "back"; readonly Forward: "forward"; }; export type Button = ClosedEnum; export type ClickAction = { type: "click"; button: Button; x: number; y: number; }; /** @internal */ export declare const Button$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Button$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ClickAction$inboundSchema: z.ZodType; /** @internal */ export type ClickAction$Outbound = { type: "click"; button: string; x: number; y: number; }; /** @internal */ export declare const ClickAction$outboundSchema: z.ZodType; export declare function clickActionToJSON(clickAction: ClickAction): string; export declare function clickActionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=clickaction.d.ts.map