import { CypherStatement, CypherParams } from "../types"; /** Generates a string to be used as parameter key */ export declare function generateParameterKey(prefix: string, key: string): string; /** Serializes an object and splits between the serialized statement and params */ export declare function serializeParameters(keyprefix: string, parameters: CypherParams | undefined): CypherStatement; /** Adds spaces to the left of the string, returns empty string is variable is undefined or empty string */ export declare function padLeft(str: string | undefined): string; //# sourceMappingURL=utils.d.ts.map