import { Param } from "../references/Param";
/** Converts an object into an object of Param so it can easily be passed to a pattern. */
export declare function toCypherParams<T>(original: Record<string, T>): Record<string, Param<T>>;
