import { type OpenDirOptions, type PathLike } from 'node:fs'; import { Dir } from '../types/dir.cjs'; import { type FsResult } from '../types/fs-result.cjs'; export declare function openDir(path: PathLike, options?: OpenDirOptions): FsResult; export declare const opendir: typeof openDir;