///
export default class FilesGraph implements Explorable {
constructor(dirname: string);
[Symbol.asyncIterator](): AsyncIterableIterator;
dirname: string;
get(...keys: any[]): Promise;
isKeyExplorable(key: any): Promise;
set(...args: any[]): Promise;
unwatch(): Promise;
watch(): Promise;
}