export interface NexeHeader { blobPath: string; layout: { resourceStart: number; resourceSize: number; contentSize: number; contentStart: number; }; } declare function shimFs(binary: NexeHeader, fs?: typeof import('fs')): void; declare function restoreFs(): void; export { shimFs, restoreFs };