export declare class Cache {
    private compilerCachePath;
    constructor();
    list(): string[];
    add(code: any, fileName: any): void;
    has(fileName: any): boolean;
    resolve(fileName: any): string;
}
