import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TypeAction = { type: "type"; text: string; }; /** @internal */ export declare const TypeAction$inboundSchema: z.ZodType; /** @internal */ export type TypeAction$Outbound = { type: "type"; text: string; }; /** @internal */ export declare const TypeAction$outboundSchema: z.ZodType; export declare function typeActionToJSON(typeAction: TypeAction): string; export declare function typeActionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=typeaction.d.ts.map