/**
 * Component that pulls connected nodes closer to each other.
 * I.e. nodes that have edges between them.
 */
export default class Link extends LayoutComponent {
    count: any[];
    bias: any[];
    initialize(...args: any[]): void;
    execute(alpha: any): void;
}
import LayoutComponent from "./layoutcomponent";
