/** * Resolve user-supplied positional paths to validated absolute paths * for `opensip graph`. No glob expansion (the shell handles * globs); no workspace-name shortcut (D10). Throws ConfigurationError * on the first invalid input. */ /** * Resolve user-supplied positional paths to validated absolute paths. * * Each input must be a path to an existing directory (file paths are * deferred). Relative paths resolve against `cwd`. Throws * `ConfigurationError` on the first invalid input. * * Returns paths in the original argument order. */ export declare function resolvePositionalPaths(paths: readonly string[], cwd: string): readonly string[]; /** * Produce a short display label for an absolute path — relative to * `process.cwd()` when meaningfully shorter, otherwise the absolute * path. Used in user-facing error messages and reports. */ export declare function positionalPathLabel(absPath: string, cwd?: string): string; //# sourceMappingURL=positional-paths.d.ts.map