import type { LintRule } from "../rule.js"; /** * COR012: no-redundant-type-import * * Flag `import type { X } from "@intentius/chant-pkg"` when a namespace import * `import * as pkg from "@intentius/chant-pkg"` already exists — the type is * accessible as `pkg.X`. */ export declare const noRedundantTypeImportRule: LintRule; //# sourceMappingURL=no-redundant-type-import.d.ts.map