import { CaptionProps } from '../ImageGallery/Caption/types'; export type ItemProps = { caption: string; value: string; }; export type ContainerProps = { $width: string; $height: string; }; export type AmpImageGalleryProps = { captionProps?: CaptionProps; items: Array; }; export type WebImageGalleryProps = { captionProps?: CaptionProps; items: Array; }; /** * Prensa | Image Gallery */ export interface ImageGalleryProps { amp: boolean; captionProps?: CaptionProps; items: Array; height?: string; width?: string; }