export declare const DESCRIPTION = "Report local agent-provider quota windows and model quota evidence."; export declare const TOP_HELP: string; type MainOptions = { argv?: string[]; stdout?: { write: (chunk: string) => unknown; }; binPath?: string; }; export declare function main(options?: MainOptions): Promise; /** * Route the flag-first default surface onto the `quota` command. `quota-axi`, * `quota-axi --json`, and `quota-axi --provider claude` all mean "run quota", * but runAxiCli routes on argv[0] and rejects a leading flag. Prefixing the * implicit `quota` command name preserves the historical surface while letting * the SDK own routing, help, version, and error framing. */ export declare function normalizeArgv(raw: string[]): string[]; export {};