export declare const DEFAULT_OPTIONS: { width: number; height: number; zoomable: boolean; draggable: boolean; hoverable: boolean; lockable: boolean; highlight: boolean; highClick: boolean; forceCenter: boolean; boundaryable: boolean; editable: boolean; type: string; clickable: boolean; dbclickable: boolean; contextmenuable: boolean; onAction: { showLinks: boolean; showNodeLabel: boolean; cancelLight: (type: boolean) => void; onClick: (data: any) => void; }; simulation: { strength: number; distanceMin: number; zoomMin: number; zoomMax: number; }; legend: { visible: boolean; show: boolean; left: number; top: string; type: { color: string; group: number; }[]; label: { fillStyle: string; fontSize: number; }; select: { type: string; }; onClick: (item: any) => void; }; link: { strokeStyle: string; distance: number; type: string; width: number; arrow: { show: boolean; aLength: number; aWidth: number; fillStyle: string; }; label: { show: boolean; fontSize: number; fontFamily: string; textAlign: string; textBaseline: string; textFillStyle: string; rectFillStyle: string; textOffset: number; textWidth: number; }; attr: { type: string; }; selected: { borderWidth: number; borderFillStyle: string; }; edited: { strokeStyle: string; width: number; }; onHovered: { callback: (link: any) => void; }; onEdit: (link: any) => void; onHover: (link: any) => void; onClick: (link: any) => void; onContextMenu: (link: any) => void; onClicked: { callback: (link: any) => void; }; }; node: { label: { fontSize: number; fontFamily: string; textAlign: string; textBaseline: string; fillStyle: string; attrName: string; space: string; distance: number; textOffset: string; }; attr: { show: boolean; fontSize: number; fillStyle: string; width: number; radius: number; }; radius: number; fillStyle: string; borderable: boolean; shadowBlur: number; shadowOffsetX: number; shadowOffsetY: number; filling: boolean; onSelected: { borderWidth: number; lineWidth: number; borderFillStyle: string; }; selected: { borderWidth: number; lineWidth: number; siteCenter: boolean; borderFillStyle: string; }; edited: { fillStyle: string; borderFillStyle: string; textColor: string; textWidth: number; radius: number; }; onHotKeyClick: (node: any) => void; onHover: (node: any) => void; onDragStart: (node: any) => void; onDragIng: (node: any) => void; onDragEnd: (node: any) => void; onHovered: { callback: (node: any) => void; }; onClicked: { callback: (node: any) => void; }; onClick: (node: any) => void; onContextMenu: (node: any) => void; onDblClicked: { callback: (node: any) => void; }; onDblClick: (node: any) => void; onEdit: (node: any) => void; }; tooltip: { left: number; }; background: string; }; export declare const SHADE_COLOR = "rgba(90, 91, 92, 0.1)";