import { GraphData } from '../types'; export interface CirclePackOptions { width: number; height: number; nodeStyle: any; groupBy: string; } export declare const runCirclePack: (data: GraphData, options: CirclePackOptions) => { nodes: never[]; edges: import("../types").EdgeData[]; combos: { id: string; label: string; type: string; x: number | undefined; y: number | undefined; color: string; r: any; children: any[]; }[]; };