/** * Converts a path starting with "/" to a project-relative path starting with "./". * * @param path The path that might start with "/" * @returns The path converted to be project-relative if it started with "/" */ export declare const makePathProjectRelative: (path: string) => string; export declare const normalizeAbsolutePath: (absolutePath: string) => string; /** * Finds the first directory that exists from a list of potential paths. * @param potentialPaths An array of relative or absolute paths to check. * @returns The absolute, normalized path of the first directory found, or null if none exist. */ export declare const findFirstDirectory: (potentialPaths: string[]) => string | null;