import React from 'react';
type ImgItem = {
    src: string;
    id?: string;
    caption?: string;
    [k: string]: any;
};
export interface ImageListProps {
    className?: string;
    list: ImgItem[];
    onClick?: (img: ImgItem, event: React.MouseEvent<HTMLImageElement>) => void;
}
export declare const ImageList: (props: ImageListProps) => React.JSX.Element;
export {};
