import { LibraryInfo } from '../extension-points/registrar'; export interface Cache { get: (key: string) => LibraryInfo | Promise | undefined | any; set: (key: string, value: LibraryInfo) => void | Promise; has: (key: string) => boolean | Promise; load: () => void | Promise; write: () => void | Promise; } export declare const noCache: Cache;