export default ImageMapPreview;
declare class ImageMapPreview extends React.Component<any, any, any> {
    static propTypes: {
        preview: PropTypes.Requireable<boolean>;
        onChangePreview: PropTypes.Requireable<(...args: any[]) => any>;
        onTooltip: PropTypes.Requireable<(...args: any[]) => any>;
        onAction: PropTypes.Requireable<(...args: any[]) => any>;
        objects: PropTypes.Requireable<any>;
    };
    constructor(props: any);
    constructor(props: any, context: any);
    container: HTMLDivElement;
}
import React from "react";
import PropTypes from "prop-types";
