import React from 'react'; import { ImageProps } from '../image/image'; interface ImageListImage extends ImageProps { isExternal?: boolean; openInNewTab?: boolean; link?: string; } export interface ImageListProps { styles?: { root: React.CSSProperties; }; ImageProps?: { styles?: { root: {}; }; items?: ImageListImage[]; }; dividerProps?: { styles?: { root: React.CSSProperties; }; }; } declare const ImageList: React.FC; export default ImageList;