import { DeployScsContractListResult, BaseContractListCommand, BaseBlockchainCommandParams } from '@scripts'; interface CreateConfigurationsForDeployedContractsCommandParams extends BaseBlockchainCommandParams { readonly deployedContractList: DeployScsContractListResult; } export default class CreateConfigurationsForDeployedContractsCommand extends BaseContractListCommand { readonly stableCoinFactoryAddressList: string[]; readonly stableCoinAddressList: string[]; readonly reserveAddressList: string[]; constructor({ deployedContractList, signer, overrides }: CreateConfigurationsForDeployedContractsCommandParams); } export {};