import type { Rule } from "../model.js"; /** * A bare subpath import of a workspace package (e.g. `toolcraft/cli`) must be a * subpath the target's `exports` map actually exposes. Node gates `exports`: * importing an unlisted subpath is `ERR_PACKAGE_PATH_NOT_EXPORTED`. In-repo this * is masked by test/bundle aliases, so it only surfaces once published — exactly * the kind of bug a static check catches. */ export declare const exportsSubpathResolvable: Rule;