/** * Converter resolution: finds the best available PDF converter. */ import type { CustomConverterConfig, PdfConvertError, PdfConverter } from "./pdf-converter.js"; export type ResolveResult = { success: true; converter: PdfConverter; } | { success: false; code: PdfConvertError; error: string; hints?: string; }; export interface ResolveOptions { priority: string[]; customConverters: Record; } export declare function resolveConverter(name: string, options: ResolveOptions): Promise; export declare function buildNoConverterHints(checked: string[]): string; //# sourceMappingURL=converter-resolver.d.ts.map