import type { Expr } from "../index";
import type { CypherEnvironment } from "../Environment";
import { LabelExpr } from "../expressions/labels/label-expressions";
export declare function labelsToString(labels: string | Array<string | Expr> | LabelExpr | Expr, env: CypherEnvironment): string;
export declare function typeToString(type: string | LabelExpr | Expr, env: CypherEnvironment): string;
