import { WithSignerCommand, WithSignerCommandParams } from '@tasks'; interface UpdateBusinessLogicKeysCommandBaseParams { resolverAddress: string; implementationAddressList: string; } interface UpdateBusinessLogicKeysCommandParams extends WithSignerCommandParams, UpdateBusinessLogicKeysCommandBaseParams { } export default class UpdateBusinessLogicKeysCommand extends WithSignerCommand { readonly resolverAddress: string; readonly implementationAddressList: string; private constructor(); static newInstance(args: UpdateBusinessLogicKeysCommandParams): Promise; } export {};