import Cypher from "@neo4j/cypher-builder";
import type { AttributeAdapter } from "../../../../schema-model/attribute/model-adapters/AttributeAdapter";
import type { QueryASTContext } from "../QueryASTContext";
import { InputField } from "./InputField";
export declare class IdField extends InputField {
    private attribute;
    constructor(name: string, attribute: AttributeAdapter, attachedTo?: "node" | "relationship");
    getChildren(): never[];
    print(): string;
    getSetParams(queryASTContext: QueryASTContext<Cypher.Node>): Cypher.SetParam[];
}
//# sourceMappingURL=IdField.d.ts.map