#!/usr/bin/env node /** * CLI entry. Extracted from module top-level to a named async function so the * dist entry carries no top-level `await` — a hard requirement for the * single-file binary, whose esbuild CJS bundle rejects top-level await. * Behaviour is byte-for-byte identical to the previous top-level flow: same * command routing, same exit-code recording via `exitCli` (natural event-loop * drain, never `process.exit`). Errors set a non-zero code the same way an * unhandled top-level rejection would have. */ export declare function main(): Promise; //# sourceMappingURL=index.d.ts.map