export { root } from "@kodelyth/fs-safe/root"; export { isPathInside, isPathInsideWithRealpath } from "@kodelyth/fs-safe/path"; export { assertNoSymlinkParents, readRegularFile, statRegularFile, type RegularFileStatResult, } from "@kodelyth/fs-safe/advanced"; export { walkDirectory, type WalkDirectoryEntry } from "@kodelyth/fs-safe/walk"; export declare function isFileMissingError(err: unknown): err is NodeJS.ErrnoException & { code: "ENOENT" | "ENOTDIR" | "not-found"; };