import { BinaryWriter, SerializableWire, SerializeWire, UInt256 } from '@neo-one/client-common'; import { DeserializeWireBaseOptions, DeserializeWireOptions } from '@neo-one/node-core'; import { InventoryType } from './InventoryType'; export interface InvPayloadAdd { readonly type: InventoryType; readonly hashes: ReadonlyArray; } export declare class InvPayload implements SerializableWire { static deserializeWireBase({ reader }: DeserializeWireBaseOptions): InvPayload; static deserializeWire(options: DeserializeWireOptions): InvPayload; readonly type: InventoryType; readonly hashes: ReadonlyArray; readonly serializeWire: SerializeWire; constructor({ type, hashes }: InvPayloadAdd); serializeWireBase(writer: BinaryWriter): void; }