declare module '@opendataloader/pdf' {
    interface ConvertOptions {
        outputDir: string;
        format?: 'json' | 'markdown' | 'text' | 'html';
    }

    function convert(inputPaths: string[], options: ConvertOptions): Promise<void>;

    export { convert };
}
