/** * Extract the arguments to pass through to `next dev` from the CLI argv. * * Everything after the `run` command (argv index 3+) is forwarded verbatim, * except a literal `--` separator, which is stripped so the npm-script form * `npm run dev -- --turbopack` behaves the same as a direct * `vercel-local-cron run --turbopack`. */ export declare function parseRunArgs(argv: string[]): string[]; //# sourceMappingURL=args.d.ts.map