import { PrimitiveType, PrimitiveValue } from "./types"; export declare class TokenIdentifierType extends PrimitiveType { static ClassName: string; constructor(); getClassName(): string; } export declare class TokenIdentifierValue extends PrimitiveValue { static ClassName: string; private readonly value; constructor(value: string); static egld(): TokenIdentifierValue; static esdtTokenIdentifier(identifier: string): TokenIdentifierValue; getClassName(): string; getLength(): number; /** * Returns whether two objects have the same value. */ equals(other: TokenIdentifierValue): boolean; valueOf(): string; toString(): string; }