export { Address, NULL_ADDRESS, bufferToHex, ensureLeading0x, eqAddress, findAddressIndex, getAddressChunks, hexToBuffer, isHexString, mapAddressListDataOnto, mapAddressListOnto, normalizeAddress, normalizeAddressWith0x, trimLeading0x, } from '@celo/base/lib/address'; export { isValidChecksumAddress, toChecksumAddress } from '@ethereumjs/util'; export declare const privateKeyToAddress: (privateKey: string) => `0x${string}`; export declare const privateKeyToPublicKey: (privateKey: string) => string; export declare const publicKeyToAddress: (publicKey: string) => `0x${string}`; export declare const isValidPrivateKey: (privateKey: string) => boolean; export declare const isValidAddress: (input: string) => input is `0x${string}`;