export interface GalleryImage { src: string alt: string caption?: string | null smallSrc?: string | null } export type ImageGalleryProps = { images?: GalleryImage[] title: string fill?: boolean width?: number height?: number sizes?: string }