export declare class DeliveryAccountBook { 'time'?: number; 'change'?: string; 'balance'?: string; 'type'?: DeliveryAccountBook.Type; 'text'?: string; 'contract'?: string; 'tradeId'?: string; 'id'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace DeliveryAccountBook { enum Type { Dnw, Pnl, Fee, Refr, Fund, PointDnw, PointFee, PointRefr, BonusOffset } }