import React from 'react';
import { IntlShape } from 'react-intl';
import { InputStyle, MapState } from '@kepler.gl/types';
interface AddMapStyleModalProps {
    inputMapStyle: Function;
    inputStyle: InputStyle;
    loadCustomMapStyle: Function;
    mapboxApiAccessToken: string;
    mapboxApiUrl?: string;
    mapState: MapState;
    intl: IntlShape;
}
declare function AddMapStyleModalFactory(): React.FC<import("react-intl").WithIntlProps<AddMapStyleModalProps>> & {
    WrappedComponent: React.ComponentType<AddMapStyleModalProps>;
};
export default AddMapStyleModalFactory;
