import { SourceCache } from './SourceCache'; export declare class LocalStorageCache implements SourceCache { static LOCALSTORAGE_PREFIX: string; private localCache; getFile(uri: string): Promise; storeFile(uri: string, content: string): Promise; clear(): Promise; }