/// import type * as fs from 'fs'; export declare enum FileType { Directory = 2, File = 1, SymbolicLink = 64, Unknown = 0 } export interface FileStat { ctime: number; mtime: number; size: number; type: FileType; } export declare function fileTypeFromFsStat(item: fs.Stats): FileType; export declare function convertToFsStat(item: FileStat): fs.Stats;