import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EmailBlockStyles } from "./emailblockstyles.js"; import { EmailBlockTypeEnum } from "./emailblocktypeenum.js"; export type EmailBlock = { /** * Type of the email block */ type: EmailBlockTypeEnum; /** * Content of the email block */ content: string; /** * URL associated with the email block, if any */ url?: string | undefined; /** * Styles applied to the email block */ styles?: EmailBlockStyles | undefined; }; /** @internal */ export declare const EmailBlock$inboundSchema: z.ZodType; export declare function emailBlockFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=emailblock.d.ts.map