/**
 * Utility function to convert a hexadecimal string to a uint64 string.
 * @param hex The hexadecimal string to convert to a uint64 string.
 * @returns The uint64 string.
 * @example
 * toUInt64('1234567890'); // returns '1234567890'
 */
export declare function toUInt64(hex: string): null | string;
