/// export interface ImageProps { key: string; url: string; } export declare type DataItem = ImageProps | string; export interface ImagesProps { data?: DataItem[]; } declare const Images: (props: ImagesProps) => JSX.Element; export default Images;