/** * Export utility — exports paper records in JSON, CSV, or BibTeX format. */ import type { NormalizedPaperRecord } from "../../schemas/index.js"; import type { CorpusPaperRef } from "../storage/local-store.js"; export interface ExportOptions { format: "json" | "csv" | "bibtex"; outputPath?: string; } /** * Export a list of papers/records to the specified format. * Returns the formatted string (and optionally writes to file). */ export declare function exportRecords(papers: Array, options: ExportOptions): string; //# sourceMappingURL=exporter.d.ts.map