import { DeprecationWarning } from "./contracts.mjs"; import { CommandArgEntry } from "../schema/command.mjs"; import "../schema/index.mjs"; //#region src/core/resolve/args.d.ts /** Walk every declared arg through the resolution chain (cli -> stdin -> env -> default), collecting deprecations and throwing aggregated errors. */ declare function resolveArgs(argEntries: readonly CommandArgEntry[], parsedArgs: Readonly>, stdinData: string | null | undefined, env: Readonly>, deprecations: DeprecationWarning[]): Readonly>; //#endregion export { resolveArgs };