/**
 * Compute the EIP-55 checksum of a supplied Ethereum address
 * @param {string} - address (e.g. 0x001d3f1ef827552ae1114027bd3ecf1f086ba0f9)
 * @returns {string} - (e.g. 0x001d3F1ef827552Ae1114027BD3ECF1f086bA0F9)
 */
declare const eip55Checksum: (address: string) => string;
export { eip55Checksum as checksum };
//# sourceMappingURL=checksum.d.ts.map