import { PathSpec } from '../../../types.ts'; import type { MountRegistry } from '../../mount/registry.ts'; /** * Build the PathSpec for a word typed relative to cwd. * * The typed word and the cwd it was typed under are two halves of one * path: `virtual` resolves the pair to an absolute path, `rawPath` * keeps the typed spelling for display. Glob chars in the word make a * pattern spec (unresolved); words whose resolved path has no mount * stay plain text. */ export declare function relativeSpec(word: string, registry: MountRegistry, cwd: string): string | PathSpec; //# sourceMappingURL=relative.d.ts.map