import { type Rule } from "../model.js"; /** * Import attributes (`with { type: "json" }`) are a syntax error before Node * 18.20, while the workspace engines floor is `>=18.18` — a dist built from * such source crashes at import time on the very Node versions the package * claims to support (#517). Applies to every package whose code reaches an npm * tarball: genuinely published ones and the private packages they vendor via * `bundledDependencies` / inline into their entrypoints. */ export declare const noImportAttributesInShippedSource: Rule;