import type { Stats } from 'fs'; export type FileCache = Map>; export type LstatCache = Map>; export type ReaddirCache = Map>; interface NFTCache { fileCache: FileCache; } export declare class RuntimeCache { fileCache: FileCache; lstatCache: LstatCache; readdirCache: ReaddirCache; nftCache: NFTCache; constructor(); } export {};