import { ScrapeResult, WebpageScrapeOptions } from '../types/index.js';
/**
 * Visits a webpage, handles interactions, and extracts content
 * @param options Configuration options for the scraping operation
 * @returns Markdown content or error message
 */
export declare function visitWebPage({ url, autoInteract, maxInteractionAttempts, waitForNetworkIdle, includeSameDomainLinks, }: WebpageScrapeOptions): Promise<ScrapeResult>;
//# sourceMappingURL=webpage-scraper.d.ts.map