import { Clause } from "./Clause";
/**
 * @see {@link https://neo4j.com/docs/cypher-manual/current/clauses/finish/ | Cypher Documentation}
 * @group Clauses
 * @since Neo4j 5.19
 */
export declare class Finish extends Clause {
    /** @internal */
    getCypher(): string;
}
