kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
13 lines (12 loc) • 564 B
TypeScript
import React from 'react';
import { RangeSliderFactory } from '@kepler.gl/components';
import { AiAssistantConfig } from '../index';
export declare type AiAssistantConfigProps = {
aiAssistantConfig: AiAssistantConfig;
updateAiAssistantConfig: (aiAssistantConfig: AiAssistantConfig) => void;
};
declare function AiAssistantConfigFactory(RangeSlider: ReturnType<typeof RangeSliderFactory>): React.FC<AiAssistantConfigProps>;
declare namespace AiAssistantConfigFactory {
var deps: (typeof RangeSliderFactory)[];
}
export default AiAssistantConfigFactory;