/** * Paper parser — extracts structured content from retrieved artifacts. * * Handles XML (JATS / Elsevier), HTML, and plain text. * PDF parsing is delegated to the Anthropic PDF skill (the LLM reads PDFs natively). */ import type { NormalizedPaperRecord } from "../../schemas/index.js"; /** * Parse an artifact file into a NormalizedPaperRecord. */ export declare function parsePaper(artifactPath: string, artifactType?: string, metadata?: Partial): Promise; /** * Extract specific sections from a NormalizedPaperRecord. */ export declare function extractSections(record: NormalizedPaperRecord, sectionNames: string[]): Record; //# sourceMappingURL=paper-parser.d.ts.map