/** @deprecated Will be removed in the next major release */ declare enum MultisigDeleteRequestRejectionError { CANNOT_DESERIALIZE_STATE = "Cannot deserialize the contract state", MULTISIG_NOT_INITIALIZED = "Smart contract panicked: Multisig contract should be initialized before usage", NO_SUCH_REQUEST = "Smart contract panicked: panicked at 'No such request: either wrong number or already confirmed'", REQUEST_COOLDOWN_ERROR = "Request cannot be deleted immediately after creation.", METHOD_NOT_FOUND = "Contract method is not found" } /** @deprecated Will be removed in the next major release */ declare enum MultisigStateStatus { INVALID_STATE = 0, STATE_NOT_INITIALIZED = 1, VALID_STATE = 2, UNKNOWN_STATE = 3 } export { MultisigDeleteRequestRejectionError, MultisigStateStatus };