import type { FilesystemTools } from '../../execution/FilesystemTools'; import type { string_dirname } from '../../types/typeAliases'; /** * Checks if the directory exists * * @private within the repository */ export declare function isDirectoryExisting(directoryPath: string_dirname, fs: FilesystemTools): Promise; /** * Note: Not [~🟢~] because it is not directly dependent on `fs * TODO: [🐠] This can be a validator - with variants that return true/false and variants that throw errors with meaningless messages * TODO: [🧠][📂] "directory" vs "folder" * TODO: [🖇] What about symlinks? */