import { MosaicSupplyChangeActionEnum } from './mosaicSupplyChangeActionEnum'; import { NetworkTypeEnum } from './networkTypeEnum'; export declare class EmbeddedMosaicSupplyChangeTransactionDTO { 'signerPublicKey': string; 'version': number; 'network': NetworkTypeEnum; 'type': number; 'maxFee': string; 'deadline': string; 'mosaicId': string; 'delta': string; 'action': MosaicSupplyChangeActionEnum; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }