import { BinaryWriter } from '../../../BinaryWriter'; import { UInt160 } from '../../../common'; import { AttributeBaseModel } from './AttributeBaseModel'; export declare type UInt160AttributeUsageModel = 0x20; export interface UInt160AttributeModelAdd { readonly usage: UInt160AttributeUsageModel; readonly value: UInt160; } export declare class UInt160AttributeModel extends AttributeBaseModel { readonly usage: UInt160AttributeUsageModel; readonly value: UInt160; constructor({ usage, value }: UInt160AttributeModelAdd); serializeWireBase(writer: BinaryWriter): void; }