import { JsonLdParser } from 'jsonld-streaming-parser';
import type { Quad } from 'rdf-js';
export declare function streamFactory(ontology: Object): () => JsonLdParser;
export declare function arrayFactory(stream: () => JsonLdParser): () => Promise<Quad[]>;
export declare function exportsGenerator(ontology: Object): {
    stream: () => JsonLdParser;
    array: () => Promise<Quad[]>;
};
