import { z } from 'zod'; declare const EmailLayoutPropsSchema: z.ZodObject<{ backdropColor: z.ZodOptional>; borderColor: z.ZodOptional>; borderRadius: z.ZodNullable>; canvasColor: z.ZodOptional>; textColor: z.ZodOptional>; fontFamily: z.ZodOptional>>; childrenIds: z.ZodNullable>>; }, "strip", z.ZodTypeAny, { childrenIds?: string[] | null | undefined; backdropColor?: string | null | undefined; borderColor?: string | null | undefined; borderRadius?: number | null | undefined; canvasColor?: string | null | undefined; textColor?: string | null | undefined; fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined; }, { childrenIds?: string[] | null | undefined; backdropColor?: string | null | undefined; borderColor?: string | null | undefined; borderRadius?: number | null | undefined; canvasColor?: string | null | undefined; textColor?: string | null | undefined; fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined; }>; export default EmailLayoutPropsSchema; export type EmailLayoutProps = z.infer; //# sourceMappingURL=EmailLayoutPropsSchema.d.ts.map