import type { CypherCompilable } from "../types"; /** * Possible types of a {@link Literal} expression * @group Expressions */ export type LiteralValue = string | number | boolean | null | Array; /** Represents a literal value * @group Expressions */ export declare class Literal implements CypherCompilable { value: T; constructor(value: T); private formatLiteralValue; } /** Represents a `NULL` literal value * @group Expressions */ export declare const CypherNull: Literal; /** Represents a `true` literal value * @group Expressions */ export declare const CypherTrue: Literal; /** Represents a `false` literal value * @group Expressions */ export declare const CypherFalse: Literal;