import { AccountLinkNetworkProperties } from './AccountLinkNetworkProperties'; import { AccountRestrictionNetworkProperties } from './AccountRestrictionNetworkProperties'; import { AggregateNetworkProperties } from './AggregateNetworkProperties'; import { HashLockNetworkProperties } from './HashLockNetworkProperties'; import { MetadataNetworkProperties } from './MetadataNetworkProperties'; import { MosaicNetworkProperties } from './MosaicNetworkProperties'; import { MosaicRestrictionNetworkProperties } from './MosaicRestrictionNetworkProperties'; import { MultisigNetworkProperties } from './MultisigNetworkProperties'; import { NamespaceNetworkProperties } from './NamespaceNetworkProperties'; import { SecretLockNetworkProperties } from './SecretLockNetworkProperties'; import { TransferNetworkProperties } from './TransferNetworkProperties'; /** * Network related configuration properties. */ export declare class PluginProperties { readonly accountlink?: AccountLinkNetworkProperties | undefined; readonly aggregate?: AggregateNetworkProperties | undefined; readonly lockhash?: HashLockNetworkProperties | undefined; readonly locksecret?: SecretLockNetworkProperties | undefined; readonly metadata?: MetadataNetworkProperties | undefined; readonly mosaic?: MosaicNetworkProperties | undefined; readonly multisig?: MultisigNetworkProperties | undefined; readonly namespace?: NamespaceNetworkProperties | undefined; readonly restrictionaccount?: AccountRestrictionNetworkProperties | undefined; readonly restrictionmosaic?: MosaicRestrictionNetworkProperties | undefined; readonly transfer?: TransferNetworkProperties | undefined; /** * @param accountlink - Network identifier. * @param aggregate - Nemesis public key. * @param lockhash - Nemesis generation hash. * @param locksecret - Nemesis epoch time adjustment. * @param metadata - * @param mosaic - * @param multisig - * @param namespace - * @param restrictionaccount - * @param restrictionmosaic - * @param transfer - */ constructor(accountlink?: AccountLinkNetworkProperties | undefined, aggregate?: AggregateNetworkProperties | undefined, lockhash?: HashLockNetworkProperties | undefined, locksecret?: SecretLockNetworkProperties | undefined, metadata?: MetadataNetworkProperties | undefined, mosaic?: MosaicNetworkProperties | undefined, multisig?: MultisigNetworkProperties | undefined, namespace?: NamespaceNetworkProperties | undefined, restrictionaccount?: AccountRestrictionNetworkProperties | undefined, restrictionmosaic?: MosaicRestrictionNetworkProperties | undefined, transfer?: TransferNetworkProperties | undefined); }