import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Editor type of the layout. */ export declare const EditorType: { readonly Html: "html"; readonly Block: "block"; }; /** * Editor type of the layout. */ export type EditorType = ClosedEnum; export type EmailControlsDto = { /** * Body of the layout. */ body: string; /** * Editor type of the layout. */ editorType: EditorType; }; /** @internal */ export declare const EditorType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const EditorType$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const EmailControlsDto$inboundSchema: z.ZodType; /** @internal */ export type EmailControlsDto$Outbound = { body: string; editorType: string; }; /** @internal */ export declare const EmailControlsDto$outboundSchema: z.ZodType; export declare function emailControlsDtoToJSON(emailControlsDto: EmailControlsDto): string; export declare function emailControlsDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=emailcontrolsdto.d.ts.map