How to specify file path for {% content %} from components?

{% partial __SELF__~"::test" %} - works
{% content __SELF__~"::test" %} - does not work

Components don’t currently support providing content files, only partials.

It is possible to use Laravel Views (myauthor.myplugin::some_view) using the {% include %} tag, if that helps. Here’s a documentation link on the topic:

{% include %} - works

Thanks.