import { _ as GraphFormatConverter, f as Graph } from "../../types-BAEQTwK_.mjs"; //#region src/formats/gexf/index.d.ts declare function toGEXF(graph: Graph): string; declare function fromGEXF(xml: string): Graph; /** Bidirectional converter for GEXF (Graph Exchange XML Format). */ declare const gexfConverter: GraphFormatConverter; //#endregion export { fromGEXF, gexfConverter, toGEXF };