export default ImageMapList;
declare class ImageMapList extends React.Component<any, any, any> {
    static propTypes: {
        canvasRef: PropTypes.Requireable<any>;
        selectedItem: PropTypes.Requireable<object>;
    };
    constructor(props: any);
    constructor(props: any, context: any);
    renderActions: () => JSX.Element;
    renderItem: () => any;
}
import React from "react";
import PropTypes from "prop-types";
