import * as d3 from 'd3'; import { Node, Rect, Link } from "../../d4"; interface MiniRender { (a?: any): any; resize?: (a?: any) => any; enable?: () => void; disable?: () => void; } export declare const miniMap: (nodes: any[], links: any[], svg: d3.Selection, viewContainer: d3.Selection, zoom: d3.ZoomBehavior, options?: { getNodeRect?: (node: any) => Rect; nodeType?: 'circle' | 'rect'; lineGenerator?: (link: any) => string; fromKey?: string; toKey?: string; scaleType?: 'max' | 'xy'; getNodeColor?: (node: any) => string; getLinkColor?: (link: any) => string; disabled?: boolean; }) => MiniRender; export {};