import type { ExecutionTools } from '../../execution/ExecutionTools';
import type { PrepareAndScrapeOptions } from '../../prepare/PrepareAndScrapeOptions';
import { LegacyDocumentScraper } from './LegacyDocumentScraper';
/**
 * @@@
 *
 * @public exported from `@promptbook/legacy-documents`
 */
export declare const createLegacyDocumentScraper: ((tools: Pick<ExecutionTools, 'llm'>, options: PrepareAndScrapeOptions) => LegacyDocumentScraper) & import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
    title: string;
    packageName: string;
    className: string;
    mimeTypes: string[];
    documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@";
    isAvilableInBrowser: false;
    requiredExecutables: ("Pandoc" | "LibreOffice")[];
}>;
/**
 * TODO: [🎶] Naming "constructor" vs "creator" vs "factory"
 */
