export * as _ from 'vscode-uri'; interface Options { delete(key: string): boolean; get(key: string): T | undefined; has(key: string): boolean; set(key: string, value: T): void; clear(): void; values(): IterableIterator; keys(): IterableIterator; } export declare function createUriMap(fileNameToUri: (fileName: string) => string, map?: Options): { clear: () => void; values: () => IterableIterator; uriKeys: () => IterableIterator; uriDelete: (_uri: string) => boolean; uriGet: (_uri: string) => T | undefined; uriHas: (_uri: string) => boolean; uriSet: (_uri: string, item: T) => void; pathDelete: (path: string) => boolean; pathGet: (path: string) => T | undefined; pathHas: (path: string) => T | undefined; pathSet: (path: string, item: T) => void; }; //# sourceMappingURL=uriMap.d.ts.map