import type { SourceWithContent } from "./synthesize.js"; export interface LocalIngestOptions { pdfMaxPages?: number; maxWordsPerSource: number; } export interface LocalIngestResult { sources: Omit[]; skipped: { path: string; reason: string; }[]; } export declare function ingestLocalPaths(inputs: string[], opts: LocalIngestOptions): Promise; export declare function expandPaths(inputs: string[]): Promise; export declare function stripTags(html: string): string; //# sourceMappingURL=local.d.ts.map