import { CypherASTNode } from "../CypherASTNode"; /** Generates a predicate to check if a node has a label or a relationship has a type * @see {@link https://neo4j.com/docs/cypher-manual/current/clauses/where/#filter-on-node-label | Cypher Documentation} * @group Expressions * @example * ```cypher * MATCH(this) * WHERE this:MyNode * ``` */ export declare class HasLabel extends CypherASTNode { private readonly node; private readonly expectedLabels; private generateLabelExpressionStr; private validateLabelsInput; }