import * as originalFs from 'fs'; export interface NonAsyncFs { existsSync: (typeof originalFs)['existsSync']; unwatchFile: (typeof originalFs)['unwatchFile']; watch: (typeof originalFs)['watch']; watchFile: (typeof originalFs)['watchFile']; } declare const _default: { existsSync: typeof originalFs.existsSync; unwatchFile: typeof originalFs.unwatchFile; watch: typeof originalFs.watch; watchFile: typeof originalFs.watchFile; }; export default _default;