import type { CliInvocation } from "../../cli-bin"; /** Build `vercel` args: `--yes`, forwarded extras, and allowlisted `--env`/`--build-env`. */ export declare function buildVercelDeployArgs(opts: { extraArgs: string[]; yes: boolean; localEnv: Record; }): string[]; /** Strip env assignments so verbose logs never print secret values. */ export declare function publicVercelArgs(args: string[]): string[]; /** Keep only team/scope flags that are valid during the link step. */ export declare function vercelLinkScopeArgs(args: string[]): string[]; /** True if this argv slot is an `--env` / `--build-env` flag or its value. */ export declare function isVercelEnvFlag(args: string[], index: number): boolean; /** Prefix Vercel args with the quiet package-manager invocation (dlx/npx). */ export declare function vercelSpawnArgs(invocation: CliInvocation, args: string[]): string[]; //# sourceMappingURL=args.d.ts.map