/** * .what = checks if a dependency key matches the package's own name * .why = detects self-dependencies that would cause circular install issues */ export declare const isSelfDependency: (input: { packageName: string | null; dependencyKey: string; }) => boolean;