import type Cypher from "@neo4j/cypher-builder"; import type { QueryASTNode } from "../QueryASTNode"; import { Field } from "./Field"; export declare class ScoreField extends Field { private score; constructor({ alias, score }: { alias: string; score: Cypher.Variable; }); getProjectionField(): Record<"score", Cypher.Variable>; getChildren(): QueryASTNode[]; } //# sourceMappingURL=ScoreField.d.ts.map