/**
 * Convert a decimal value to hex
 * @param {number} x generally expects b byte value, 0-255
 * @returns {string} zero-padded value, for example instead of "0", will return "00" and instead of "F" will return "0F"
 */
export function dec2hex(x: number): string;
//# sourceMappingURL=dec2hex.d.ts.map