import { type stat, type readFile } from 'fs/promises'; import { type createReadStream } from 'fs'; import { type extname, type resolve } from 'path'; import type readline from 'readline'; import { type isUtf8 } from 'buffer'; declare let statMethod: typeof stat; declare let resolveMethod: typeof resolve; declare let createReadStreamMethod: typeof createReadStream; declare let extnameMethod: typeof extname; declare let readlineMethod: typeof readline; declare let isUtf8Method: typeof isUtf8; declare let readFileMethod: typeof readFile; export { statMethod as stat, createReadStreamMethod as createReadStream, extnameMethod as extname, readlineMethod as readline, isUtf8Method as isUtf8, resolveMethod as resolve, readFileMethod as readFile, }; //# sourceMappingURL=node-unsafe-imports.d.ts.map