/** * @copyright Sister Software * @license AGPL-3.0 * @author Teffen Ellis, et al. */ import type { Stats } from "node:fs"; import type { PathBuilderLike } from "path-ts"; export { existsSync } from "node:fs"; /** * Attempts to stat a file or directory. * * @throws If the path exists but cannot be statted for some reason other than non-existence. */ export declare function tryStat(pathBuilderLike: PathBuilderLike): Promise; /** * Whether a path exists and is a directory. */ export declare function isDirectory(path: PathBuilderLike): Promise; //# sourceMappingURL=node.d.ts.map