export type DiskCache = { dirAbs: string; }; export declare function readCache(cache: DiskCache, key: string): Promise; export declare function writeCache(cache: DiskCache, key: string, stdout: string): Promise;