import type { SimulationNode, SimulationLink } from './useNetworkSimulation'; interface UseAnimatedNetworkRenderingProps { nodes: SimulationNode[]; links: SimulationLink[]; tick: number; } interface AnimatedLinkData { source: SimulationNode; target: SimulationNode; weight: number; index: number; color?: string; opacity?: number; width?: number; meta?: any; parallelIndex: number; parallelCount: number; } export declare const useAnimatedNetworkRendering: ({ nodes, links, tick }: UseAnimatedNetworkRenderingProps) => { renderNodes: SimulationNode[]; renderLinks: AnimatedLinkData[]; }; export {};