import ts from "typescript";
export declare class AmbientModuleCache {
    private modules;
    private cache;
    constructor(modules: ts.Symbol[]);
    private findAndCacheEntry;
    getModule(moduleName: string): ts.Symbol | null;
    findModuleForName(moduleName: string): ts.Symbol | undefined;
}
