import { MessageDTO } from './messageDTO'; import { NetworkTypeEnum } from './networkTypeEnum'; import { UnresolvedMosaic } from './unresolvedMosaic'; export declare class EmbeddedTransferTransactionDTO { 'signerPublicKey': string; 'version': number; 'network': NetworkTypeEnum; 'type': number; 'maxFee': string; 'deadline': string; 'recipientAddress': string; 'mosaics': Array; 'message': MessageDTO; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }