export default ImageMapConfigurations;
declare class ImageMapConfigurations extends React.Component<any, any, any> {
    static propTypes: {
        canvasRef: PropTypes.Requireable<any>;
        selectedItem: PropTypes.Requireable<object>;
        onChange: PropTypes.Requireable<(...args: any[]) => any>;
        onChangeAnimations: PropTypes.Requireable<(...args: any[]) => any>;
        onChangeStyles: PropTypes.Requireable<(...args: any[]) => any>;
        onChangeDataSources: PropTypes.Requireable<(...args: any[]) => any>;
        animations: PropTypes.Requireable<any[]>;
        styles: PropTypes.Requireable<any[]>;
        dataSources: PropTypes.Requireable<any[]>;
        tabsDefinition: PropTypes.Requireable<object>;
    };
    constructor(props: any);
    constructor(props: any, context: any);
    state: {
        activeKey: string;
    };
    handlers: {
        onChangeTab: (activeKey: any) => void;
        onCollapse: () => void;
    };
    render(): JSX.Element;
}
import React from 'react';
import PropTypes from 'prop-types';
