import * as fs from 'fs'; import { BaseOptions } from './types.cjs'; import 'node:fs'; type StatOptions = Pick; /** * Get path stat information. * {@link https://kythuen.github.io/ephemeras/fs/stat | View Details} * * @param path Path to check. * @param options See {@link StatOptions }. * @returns Stat info of path. * * @example * (await stat('foo/bar')).isFile() //--> false */ declare function stat(path: string, options?: Partial): Promise; export { type StatOptions, stat };