import type { Rule } from "../model.js"; /** * A relative import must not escape its package directory into a sibling * package (e.g. `../../mcp-oauth/dist/index.js`). It bypasses the dependency * graph, depends on the sibling already being built, and breaks once published. * Import the sibling by its package name instead. */ export declare const noCrossPackageRelativeImport: Rule;