import { _ as GraphFormatConverter, f as Graph } from "../../types-BAEQTwK_.mjs"; //#region src/formats/graphml/index.d.ts declare function toGraphML(graph: Graph): string; declare function fromGraphML(xml: string): Graph; /** Bidirectional converter for GraphML XML format. */ declare const graphmlConverter: GraphFormatConverter; //#endregion export { fromGraphML, graphmlConverter, toGraphML };