import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type OpenPageAction = { type: "open_page"; url: string; }; /** @internal */ export declare const OpenPageAction$inboundSchema: z.ZodType; /** @internal */ export type OpenPageAction$Outbound = { type: "open_page"; url: string; }; /** @internal */ export declare const OpenPageAction$outboundSchema: z.ZodType; export declare function openPageActionToJSON(openPageAction: OpenPageAction): string; export declare function openPageActionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=openpageaction.d.ts.map