import { RootState } from '../../engine/state'; type Props = { onDragStart: () => void; onDragEnd: () => void; onStartPreview: (event: MouseEvent, tableId: string | null, columnId: string | null) => void; onEndPreview: () => void; }; export declare function createVisualization(state: RootState, props: Props): import('d3-selection').Selection; export {};