export declare class ModuleCache {
    private cacheDir;
    constructor();
    get(key: string): any;
    set(key: string, value: any, expiration?: number): void;
    delete(key: string): void;
    private getFilePath;
    clear(): void;
}
