import { NamedNode } from 'lincd/models'; import { BackendStore } from './BackendStore.js'; import { QuadSet } from 'lincd/collections/QuadSet'; /** * A store on the frontend that loads all contents into memory on initialisation * And passes all changes to the provider on the backend * @see BackendFileStoreProvider */ export declare class BackendFileStore extends BackendStore { static targetClass: NamedNode; constructor(n: string | NamedNode); loadContents(): Promise; }