import type { ILibrary, IdentifierType } from "../../core/library-interface.js"; import type { CheckResult } from "../check/types.js"; export interface CheckOperationOptions { identifiers?: string[]; idType?: IdentifierType; all?: boolean; searchQuery?: string; skipDays?: number; save?: boolean; metadata?: boolean; config?: { email?: string; pubmed?: { email?: string; apiKey?: string; }; }; } export interface CheckOperationResult { results: CheckResult[]; summary: { total: number; ok: number; warnings: number; skipped: number; }; } export declare function checkReferences(library: ILibrary, options: CheckOperationOptions): Promise; //# sourceMappingURL=check.d.ts.map