import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type EmailRenderOutput = { /** * Subject of the email */ subject: string; /** * Body of the email */ body: string; }; /** @internal */ export declare const EmailRenderOutput$inboundSchema: z.ZodType; export declare function emailRenderOutputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=emailrenderoutput.d.ts.map