/** * Converts typed array (Uint8Array) storing 64bit unsigned integer to a number. * It is not useful once the number gets large, but it is ok for e.g. message id's * @param typedArray - typedArray */ export declare function uint64ToNumber(typedArray: Uint8Array): number;