import { LockHashAlgorithmEnum } from './lockHashAlgorithmEnum'; import { NetworkTypeEnum } from './networkTypeEnum'; export declare class SecretLockTransactionDTO { 'signature': string; 'signerPublicKey': string; 'version': number; 'network': NetworkTypeEnum; 'type': number; 'maxFee': string; 'deadline': string; 'secret': string; 'mosaicId': string; 'amount': string; 'duration': string; 'hashAlgorithm': LockHashAlgorithmEnum; 'recipientAddress': string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }