import { ScanResult } from '../types/scanResult'; import { ScanOptions } from '../types/scanOptions'; /** * Performs a complete scan of a website starting from a given URL * Crawls all internal links and checks their HTTP status * * @param keyword - The word to search for in the website content * @param url - The starting URL to scan * @param options - Scan options * @param options.userAgent - Custom User-Agent string for HTTP requests * @param options.timeout - Request timeout in milliseconds * @returns An object containing: * - success: boolean indicating if the scan was successful * - error: error message if success is false * - visitedUrlsData: array of objects containing visited URLs and their status codes */ export declare function scan(keyword: string, url: string, options?: ScanOptions): Promise; export default scan; //# sourceMappingURL=core.d.ts.map