import type { ModuleManifest } from "../module-manifest"; export type ExistsSync = (filePath: string) => boolean; export declare class PathMapper { private exists; constructor(exists?: ExistsSync); resolve(request: string, manifest: ModuleManifest): string | undefined; }