import React from 'react';
import BasicComponent from '../../../../components/Base/BasicComponent';
import MapboxChartStyleService from '../../../../base-pandora-visualization/services/chart-style/charts/mapbox/base';
interface IMapConfigProps {
    chartStyleService: MapboxChartStyleService;
}
export default class MapConfig extends BasicComponent<IMapConfigProps, any> {
    onZoomChange(value: number): void;
    onCenterLongChange(value: number): void;
    onCenterLatChange(value: number): void;
    zoomValidator(value: any): Promise<void>;
    longitudeValidator(value: any): Promise<void>;
    latitudeValidator(value: any): Promise<void>;
    render(): React.JSX.Element;
}
export {};
