/** * CLI dispatcher for `@ar-agents/mercadopago`. Reads `argv[2]` (the first * arg after the bin name) and dispatches to the matching subcommand. * * Usage: * mercadopago doctor — diagnose your environment * mercadopago doctor --probe — also dry-call validate_tax_id * mercadopago help — print this list * * Exit codes follow the convention: 0 = ok or warn-only, 1 = at least one * fail; CI scripts can rely on `mercadopago doctor` to gate deploys. */ declare function runCli(argv: string[]): Promise; export { runCli };