I will be building two zero-inflated negative binomial (ZINB) regression models, where each model is aiming to predict different disease count outcomes based on the exact same independent variables and data. For example:
$$Y_A =\beta_1^A X_1 + \beta_2^A X_2 + \beta_i^A X_i... + \beta_n^A X_n \tag*{Eq.(A)}$$ $$Y_B = \beta_1^B X_1 + \beta_2^B X_2 + \beta_i^B X_i... + \beta_n^B X_n \tag*{Eq.(B)}$$
What would be the appropriate method to test if the $\beta$ coefficients are statistically significantly across models when the data from the independent variables are the same across the models? Such that:
$$H_0: \beta_1^A ~\text{in Eq.(A)} = \beta_1^B ~\text{in Eq.(B)} \\ H_A: \beta_1^A ~\text{in Eq.(A)} \ne \beta_1^B ~\text{in Eq.(B)}$$
I have investigated the use of Seemingly-Unrelated Regression (SUR) methods, but I am unsure if there is relevant literature to warrant their use in the form of a ZINB model. Is there another more simple means of testing if these $\beta$ coefficients are statistically significantly different from each other?