import { AbstractFlatCache } from './AbstractFlatCache';
export declare class ManualCache<LoadedValue> extends AbstractFlatCache<LoadedValue> {
    set(key: string, newValue: LoadedValue): Promise<void>;
}
