import React from 'react';
import InfoHelperFactory from '../../common/info-helper';
import { Layer } from '@kepler.gl/layers';
type VisConfigSwitchProps = {
    layer: Layer;
    property: string;
    onChange: (v: Record<string, boolean>) => void;
    label?: string;
    description?: string;
    disabled?: boolean;
};
declare function VisConfigSwitchFactory(InfoHelper: ReturnType<typeof InfoHelperFactory>): React.FC<VisConfigSwitchProps>;
declare namespace VisConfigSwitchFactory {
    var deps: (typeof InfoHelperFactory)[];
}
export default VisConfigSwitchFactory;
