import { JSONLDStore } from 'lincd-jsonld-store/shapes/JSONLDStore'; import { NamedNode, Node } from 'lincd/models'; import { CoreMap } from 'lincd/collections/CoreMap'; export declare class NodeFileStore extends JSONLDStore { static targetClass: NamedNode; static MINIMUM_STORE_DELAY_MILISEC: number; static MINIMUM_STORE_DELAY_MILISEC_DEV: number; private storingToFile; constructor(nodeOrLabel: string | Node); get path(): string; setPermanentStorageContents(jsonld: string): Promise; getPermanentStorageContents(): Promise; setURIs(nodeToCurrentUriMap: CoreMap): Promise<[string, string][]>; protected getMinStoreDelay(): number; }