import { DealSlot } from "./types";
export declare const getCachePath: (cacheRoot: string) => string;
export declare const loadCache: (cachePath: string) => {
    [address: string]: DealSlot;
};
export declare const saveCache: (cachePath: string, slots: {
    [address: string]: DealSlot | undefined;
}) => void;
