/** ************************************* * Title: Util * Description: Utility functions for extracting terms * Author: Wout Slabbinck (wout.slabbinck@ugent.be) * Created on 29/10/2021 *****************************************/ import * as N3 from 'n3'; /** * Retrieve base object * @param store * @param term */ export declare function retrieveTerm(store: N3.Store, term: N3.Term): any; /** * Extract the tree context and the namespaces required for a view * @param treeContext * @returns {Record} */ export declare function makeViewContext(treeContext: string | Record | undefined): Record;