import type * as RDF from '@rdfjs/types'; /** * A term that represents an RDF blank node with a label. */ export declare class BlankNode implements RDF.BlankNode { readonly termType = "BlankNode"; readonly value: string; constructor(value: string); equals(other?: RDF.Term | null): boolean; }