No, static UPROPERTYs are not supported, regardless of type.
Blueprint libraries are not supposed to have any state, not even static data members. If you need a shared delegate like this, put it on a UObject as a non-static UPROPERTY, and control creation/access to that class so that there is only ever a single instance of it used.