import type { CypherEnvironment } from "../../Environment";
import { Subquery } from "./Subquery";
/**
 * @see {@link https://neo4j.com/docs/cypher-manual/current/subqueries/collect/ | Cypher Documentation}
 * @group Subqueries
 */
export declare class Collect extends Subquery {
    /**
     * @internal
     */
    getCypher(env: CypherEnvironment): string;
}
