/** * Get the checksummed version of an address. * * @param {string} address * @return {string} */ export declare const toChecksumAddress: (address: string) => string; /** * Get the Ethereum address for a public key. * * @param {Buffer} publicKey * @return {string} */ export declare const getAddress: (publicKey: Uint8Array) => string;