import { type CliAction } from 'openapi-zod-ts/cli-core'; export type { CliAction }; /** * Parse raw process.argv into a structured action. * * Pure function: no I/O, no process.exit. Testable in isolation. * * @param argv process.argv (first two entries are node + script path) * @param cwd the working directory to resolve paths against */ export declare function parseCliArgs(argv: string[], cwd: string): CliAction; //# sourceMappingURL=cli-args.d.ts.map