/** * Resolves pnpm workspace patterns to absolute package directories. * * Applies pnpm's algorithm: every pattern is rewritten to match a manifest, `!`-prefixed patterns become * exclusions, and the matcher decides the rest. Exclusions filter the entire positive match set * irrespective of declaration order. */ export declare function resolvePackageDirs(monorepoRoot: string, patterns: string[]): string[];