/// import { BitcoinNetwork } from 'bitcoin-network'; import { MessageType } from '../MessageType'; export declare class AddressCache { static type: MessageType; static fromAddressCache(addressesBlacklist: IAddressCache[], network: BitcoinNetwork): AddressCache; static deserialize(buf: Buffer): AddressCache; type: MessageType; cacheSPKs: Buffer[]; toAddressCache(network: BitcoinNetwork): IAddressCache[]; serialize(): Buffer; } export interface IAddressCache { [x: string]: boolean; }