import type { PathVariable } from "../../references/Path";
import { CypherFunction } from "./CypherFunctions";
/**
 * @see {@link https://neo4j.com/docs/cypher-cheat-sheet/current/#_path_functions | Cypher Documentation}
 * @group Functions
 * @category Path
 */
export declare function nodes(path: PathVariable): CypherFunction;
/**
 * @see {@link https://neo4j.com/docs/cypher-cheat-sheet/current/#_path_functions | Cypher Documentation}
 * @group Functions
 * @category Path
 */
export declare function relationships(path: PathVariable): CypherFunction;
