/// import { Variant } from '@mui/material/styles/createTypography'; import { ImageItemProps } from '../image-item'; export interface ImageItemsProps { items: ImageItemProps[]; titleVariant?: Variant; imageClassName?: string; arrows?: boolean; slidesToShow?: number; title?: string; className?: string; } export default function ImageItems({ items, imageClassName, titleVariant, slidesToShow, arrows, title, className, }: ImageItemsProps): JSX.Element;