import { type ImageSourceProps, type ImageProps as ArcImageProps, } from "@arc-ui/components/Image"; export interface FeaturePostImage extends Pick< ArcImageProps, | "src" | "alt" | "loading" | "sizes" | "srcSet" | "width" | "height" | "fadeOnLoad" > { sources?: Pick[]; title?: string; description?: string; }