import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type KeyPressAction = { type: "keypress"; keys: Array; }; /** @internal */ export declare const KeyPressAction$inboundSchema: z.ZodType; /** @internal */ export type KeyPressAction$Outbound = { type: "keypress"; keys: Array; }; /** @internal */ export declare const KeyPressAction$outboundSchema: z.ZodType; export declare function keyPressActionToJSON(keyPressAction: KeyPressAction): string; export declare function keyPressActionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=keypressaction.d.ts.map