import { type Rule } from "../model.js"; /** * Import-driven vendoring check: for each genuinely-published package, every * workspace package its shipped source actually imports (by bare name, at * runtime — type-only and test imports excluded) must be vendored into its * tarball (`bundledDependencies`), compiled into its entrypoint, or itself * reach npm AND be declared in the importer's dependencies. A published-but- * undeclared import is a phantom dependency that resolves only through * hoisting luck and breaks the moment the tree layout changes. */ export declare const importedWorkspaceDepUnresolvable: Rule;