import { Store } from 'n3';
import type { Quad } from 'n3';
/**
 * Loads schema all Triples from a given Schema file and version.
 */
export declare function load(url: string): Promise<Store>;
/**
 * does the same as load(), but for a local file
 */
export declare function loadFile(path: string): Promise<Store>;
export declare function process(quads: Quad[]): Store;
//# sourceMappingURL=reader.d.ts.map