/** Format the path in posix format. */
export declare function convertPathToPosix(path: string): string;
/**
 * Find the shared root of all provided paths.
 * This will split all paths by segments and find the longest common prefix.
 * Note, this works for both posix and non-posix paths.
 */
export declare function findSharedRoot(paths: string[]): string | null;
//# sourceMappingURL=paths.d.ts.map