import { ExporterOptions } from "../../../exporter"; import { ScraperOptions } from "../../../scraper"; import { Logger } from "../../../utils"; export declare const fullyLoadConfig: (args: any, logger: Logger) => Promise<{ config: { scraper: ScraperOptions; exporter: ExporterOptions; } | null; path: string; }>; export declare const watchForConfigChange: (watcher: any, logger: Logger) => Promise; export declare const handleStdin: (keybindings: { [key: number]: number | (() => void | Promise); }) => Promise;