/** * F5: Graph export — json, csv, d3, graphml, parquet * * Validated patterns from tests/fierce-f2f5.ts:239-290. */ import type { GraphExportResult } from '../types/graph-types.js'; import { type ComputeSession, type DuckDBLike } from '../compute-session.js'; /** * graph.export — Export graph in multiple formats */ export declare function handleGraphExport(args: unknown, duckdb: DuckDBLike | ComputeSession): Promise; //# sourceMappingURL=graph-export.d.ts.map