I suppose this is the correct syntax:
dist = ProbabilityDistribution[2*Sqrt[1 - x^2]/Pi, {x, -1, 1}];
trasf = TransformedDistribution[
Abs[a - b], {a \[Distributed] dist, b \[Distributed] dist}]
NProbability[x > 1, x \[Distributed] trasf]
Plot[NProbability[x > y, x \[Distributed] trasf], {y, 0, 2}]
Unfortunately, it seems that the calculation of the PDF is very slow.