export type PathLike = string | URL; export { baseName, directoryName, ensureRelativePath, extensionName, isAbsolutePath, joinPaths, normalizePath, normalizePathKey, normalizeSlashes, normalizeWorkspaceRelativePath, relativePath, removeAllExtensions, removeExtension, removeOrderPrefixes, trimLeadingCurrentDirPrefix, trimLeadingDotPrefix, trimLeadingDotsSegment, trimLeadingDotSlash, trimLeadingSlashes, trimTrailingSlashes, } from './path-core.ts'; /** Convert a `PathLike` input into a usable file system path string. */ export declare function pathLikeToString(path: PathLike): string; /** Resolve a path scheme relative to the current working directory. */ export declare function resolveSchemePath(path: PathLike): string;