import { BigIntConstant, Constant, StringConstant } from '../base/Constant'; export declare const EMPTY_STRING = ""; export declare class ValueUtil { static readonly EMPTY_STRING_CONSTANT: StringConstant; static dispose(): void; static getOrCreateNumberConst(n: number | string): Constant; static createBigIntConst(bigInt: bigint): BigIntConstant; private static getOrCreateStringConst; static createStringConst(str: string): Constant; static createConst(str: string): Constant; static getUndefinedConst(): Constant; static getNullConstant(): Constant; static getBooleanConstant(value: boolean): Constant; } //# sourceMappingURL=ValueUtil.d.ts.map