import { SourceCache } from './SourceCache'; export declare class FileSystemCache implements SourceCache { private basePath; constructor(basePath: string); getFile(uri: string): Promise; clear(): Promise; storeFile(uri: string, content: string): Promise; private simplifyUri; }