export interface CrawlParams {
    url?: string;
    scan?: boolean;
    userId?: number;
    robots?: boolean;
    subdomains?: boolean;
    tld?: boolean;
    agent?: string;
    proxy?: string;
    sitemap?: boolean;
    delay?: number;
}
export declare const watcherCrawl: ({ url, userId, scan, robots, subdomains, tld, agent, proxy, sitemap, delay, }: CrawlParams, deciphered?: boolean) => Promise<void>;
