declare const getAllProjectNames: (rootDirPath: string) => string;
declare const getOtherProjectsNames: (rootDirPath: string, projects: string) => Set<string> | null;
declare const checkIfRootDirExists: (rootDirPath: string) => boolean;
declare const checkForRootDirPermission: (rootDirPath: string) => boolean;
declare const checkIfAllProjectExists: (rootDir: string, projectNames: string) => boolean;
declare const checkIfProjectExists: (rootDir: string, projectName: string) => boolean;
export { getAllProjectNames, checkIfRootDirExists, checkForRootDirPermission, getOtherProjectsNames, checkIfAllProjectExists, checkIfProjectExists };
//# sourceMappingURL=root-dir-helper.d.ts.map