import React from 'react';
import { ZoomStopsConfig } from '@kepler.gl/types';
type Props = {
    config: ZoomStopsConfig;
    property: string;
    label: string;
    unit: string;
    onChange: (update: Record<string, ZoomStopsConfig>) => void;
};
declare const VisConfigByZoomInput: React.FC<Props>;
export default VisConfigByZoomInput;
