/** Convert a given path to a windows path if the current system doesn't use `/`. */ export declare function replaceWithWindowsPathIfNeeded(input: string): string; /** Convert a Windows path to a posix path. */ export declare function toPosixPath(maybeWindowsPath: string): string; /** * Use this to interpolate paths into bash commands. If the given path is not a window path, the * path structure will not be modified. */ export declare function interpolationSafeWindowsPath(input: string): string; export declare function joinFileNamesWithParentDirPath(parentDirPath: string, childNames: ReadonlyArray): Array; export declare function getSystemRootPath(): string;