import { AuditProgress } from "../types";
export type CrawlOptions = {
    maxPages?: number;
    maxDepth?: number;
    delayMS?: number;
    userAgent?: string;
};
export declare function crawlWebsite(startUrl: string, options?: CrawlOptions, onProgress?: (info: AuditProgress) => void): Promise<{
    url: string;
    html: string;
}[]>;
