import { BaseContractListCommand, BaseBlockchainCommandParams, DeployScsContractListResult } from '@scripts'; interface RegisterDeployedContractBusinessLogicsCommandParams extends BaseBlockchainCommandParams { readonly deployedContractList: DeployScsContractListResult; } export default class RegisterDeployedContractBusinessLogicsCommand extends BaseContractListCommand { constructor({ deployedContractList, signer, overrides }: RegisterDeployedContractBusinessLogicsCommandParams); get deployedContractAddressList(): string[]; } export {};