import type { CodeImportContext, CodeImportResolver } from "../types.js"; export declare function localPath(base: string, value: string): string | undefined; /** Singular names require one file; declared groups bypass this helper. */ export declare function uniqueImport(context: CodeImportContext, matchedName: string, candidates: ReadonlySet | readonly string[]): string[]; export declare function addName(index: Map>, name: string, path: string): void; /** Best-effort fallback for adapters without a resolver; stem collisions are * choices, not declared multi-file groups. Custom resolver arrays stay trusted. */ export declare function createLegacyImportResolver(context: CodeImportContext): CodeImportResolver; //# sourceMappingURL=paths.d.ts.map