import type Iterator from '../FSIterator.js'; import type { Entry } from '../types.js'; export type Callback = (error?: Error) => void; export default function stat(iterator: Iterator, entry: Entry, callback: Callback): void;