import type { ConcreteEntity } from "../entity/ConcreteEntity"; import type { Annotation } from "./Annotation"; export declare class CypherAnnotation implements Annotation { readonly name = "cypher"; statement: string; columnName: string; targetEntity?: ConcreteEntity; constructor({ statement, columnName }: { statement: string; columnName: string; }); } //# sourceMappingURL=CypherAnnotation.d.ts.map