import { Fetcher, Node } from"rdflib";
/**
* Nullsafe fetching of a node
* @paramfetcher - The fetcher to use
* @paramnode - A node to fetch, or null to do nothing at all
*/export declare functionfetchNode(fetcher: Fetcher, node: Node | null): Promise<void>;