import React from 'react'; import { z } from 'zod'; declare const ImagePropsSchema: z.ZodObject<{ style: z.ZodNullable>>; backgroundColor: z.ZodNullable>; textAlign: z.ZodNullable>>; }, "strip", z.ZodTypeAny, { padding?: { top: number; bottom: number; right: number; left: number; } | null | undefined; backgroundColor?: string | null | undefined; textAlign?: "right" | "left" | "center" | null | undefined; }, { padding?: { top: number; bottom: number; right: number; left: number; } | null | undefined; backgroundColor?: string | null | undefined; textAlign?: "right" | "left" | "center" | null | undefined; }>>>; props: z.ZodNullable>; height: z.ZodNullable>; url: z.ZodNullable>; alt: z.ZodNullable>; linkHref: z.ZodNullable>; contentAlignment: z.ZodNullable>>; }, "strip", z.ZodTypeAny, { width?: number | null | undefined; height?: number | null | undefined; url?: string | null | undefined; alt?: string | null | undefined; linkHref?: string | null | undefined; contentAlignment?: "top" | "bottom" | "middle" | null | undefined; }, { width?: number | null | undefined; height?: number | null | undefined; url?: string | null | undefined; alt?: string | null | undefined; linkHref?: string | null | undefined; contentAlignment?: "top" | "bottom" | "middle" | null | undefined; }>>>; }, "strip", z.ZodTypeAny, { style?: { padding?: { top: number; bottom: number; right: number; left: number; } | null | undefined; backgroundColor?: string | null | undefined; textAlign?: "right" | "left" | "center" | null | undefined; } | null | undefined; props?: { width?: number | null | undefined; height?: number | null | undefined; url?: string | null | undefined; alt?: string | null | undefined; linkHref?: string | null | undefined; contentAlignment?: "top" | "bottom" | "middle" | null | undefined; } | null | undefined; }, { style?: { padding?: { top: number; bottom: number; right: number; left: number; } | null | undefined; backgroundColor?: string | null | undefined; textAlign?: "right" | "left" | "center" | null | undefined; } | null | undefined; props?: { width?: number | null | undefined; height?: number | null | undefined; url?: string | null | undefined; alt?: string | null | undefined; linkHref?: string | null | undefined; contentAlignment?: "top" | "bottom" | "middle" | null | undefined; } | null | undefined; }>; type ImageProps = z.infer; declare function Image({ style, props }: ImageProps): React.JSX.Element; export { Image, type ImageProps, ImagePropsSchema };