kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
14 lines (13 loc) • 685 B
TypeScript
import React, { PropsWithChildren } from 'react';
import { VisState } from '@kepler.gl/schemas';
import LayerPanelHeaderFactory from './side-panel/layer-panel/layer-panel-header';
export declare type DndContextProps = PropsWithChildren<{
visState: VisState;
}>;
export declare type DndContextComponent = React.FC<DndContextProps>;
export declare const DragItem: import("styled-components").StyledComponent<"div", any, {}, never>;
declare function DndContextFactory(LayerPanelHeader: ReturnType<typeof LayerPanelHeaderFactory>): React.FC<PropsWithChildren>;
declare namespace DndContextFactory {
var deps: (typeof LayerPanelHeaderFactory)[];
}
export default DndContextFactory;