/** * QA360 Crawl Command * * Universal crawler for all types of web applications. * Supports presets for different platform types and custom auth/test data. */ import { Command } from 'commander'; /** * Create crawl command */ export declare function createCrawlCommand(): Command; /** * Crawl command handler */ export declare function crawlCommand(url: string, options?: { output?: string; name?: string; preset?: string; listPresets?: boolean; maxDepth?: string; maxPages?: string; headed?: boolean; a11y?: boolean; exclude?: string[]; only?: string[]; scenario?: string; authEmail?: string; authPassword?: string; authUrl?: string; testData?: string; viewport?: string; slowMo?: string; quick?: boolean; }): Promise; export default createCrawlCommand;