import { Edge } from '@antv/graphlib'; import { EdgeData, Graph as IGraph } from '../types'; export declare const greedyFAS: (g: IGraph, weightFn?: (e: Edge) => number) => Edge[];