/// export declare class ProfileId { #private; constructor(id?: string, options?: any); [Symbol.toPrimitive](hint: string): string; /** * with the active id get the timestamp for when it was created * @returns Date */ getTimeStamp(): Date; toHexString(): string; /** * convert the active id in a Buffer and return the buffer * @return Buffer */ get id(): Buffer; toString(): string; /** * This is the string of the active id * @returns 24 char length string */ valueOf(): string; /** * With an active object compare a string to see if equal * @param value accepts a string that you will like to check with the active id for equality * @returns boolean */ isEqual(value: string | ProfileId): boolean; } //# sourceMappingURL=ProfileId.d.ts.map