In linear regression of $y$ onto $x$, one finds a $\beta_0$ and $\beta_1$ minimizing $\sum \|y - (\beta_1 x + \beta_0)\|^2$. One can show that $$\beta_1 = \rho(x,y) \frac{\sigma(y)}{\sigma(x)},$$ where $\rho(x,y)$ is the correlation between $x$ and $y$ and $\sigma(\cdot)$ is the standard deviation function.
A common "criticism" of the least-squares approach above is that it is not resistent to outliers. A simple modification of the above framework is to instead consider the $\beta_0$' and $\beta_1$' which minimize the absolute deviations, $\sum \|y - (\beta_1' x + \beta_0')\|$. This is sometimes called LAD linear regression.
There are L1-analogoues to the covariance and standard deviation. For example, this paper discusses robust estimators of the covariation and variance, the "co-median" and "MAD" estimator. I believe there are others.
Question: One might guess that $\beta_1' = \frac{\text{COMEDIAN}(x,y)}{\text{MAD}(x)}$. Does $\beta_1'$ indeed have a "natural" interpretation of this form, in terms of "natural" L1 quantities, analogous to L2/linear regression coefficient $\beta_1$?
[Edited to stress the search for a "natural" expression].