import type { SourceLocation } from "../../../core/domain/project-map.js"; export type NamedDeclaration = { readonly name: string; readonly source: SourceLocation; }; /** * Display names, qualified only where a bare name has more than one claimant. * A service-sized repository holds many types called `Config`, and a document * spelling them all the same reports an entity that does not exist. */ export declare function qualifiedNames(declarations: readonly NamedDeclaration[]): readonly string[];