#!/usr/bin/env node export declare function runCli(args?: string[]): Promise; /** * Localhost concurrency-override guard. The `dev` safe-mode preset clamps * localhost crawls to concurrency 1 (a cache-cold dev server amplifies every * fetch into a chain of DB queries). An explicit `--concurrency N` (N > 1) * silently overrides that clamp — which is exactly how a user tripped the * backpressure watchdog against a single-process dev server. We don't change * the value (the user asked for it), we just surface the risk. * * Returns the warning line, or null when no warning is warranted. Exported for * unit testing. * * @param source the audit target (URL or path) * @param effectiveConcurrency the concurrency that will actually reach the * engine for this run (after preset resolution) — i.e. the value worth * warning about. The default-suppression here is defensive; the call site * already gates on the dev preset not being active. `undefined` → no warning. */ export declare function localhostConcurrencyWarning(source: string, effectiveConcurrency: number | undefined): string | null; //# sourceMappingURL=cli.d.ts.map