import { CypherFunction } from "../../expressions/functions/CypherFunctions";
import type { Expr } from "../../types";
/**
 * @group Functions
 * @see [Apoc Documentation](https://neo4j.com/docs/apoc/current/overview/apoc.date/apoc.date.convertFormat/)
 * @example
 * ```ts
 * Cypher.apoc.date.convertFormat(
 *  new Cypher.Param("2020-11-04"),
 *  "date",
 *  "basic_date"
 * )
 *```
 */
export declare function convertFormat(temporalParam: Expr, currentFormat: string, convertTo?: string): CypherFunction;
