Livewire compnent in laravel package

i have developing laravel package based on livewire components concept, the main compoent i have registered in the package service provider to be accessed in laravel framework, but also i have sub component in this package, i don’t need to be registered in service provider because will be access from laravel framework, is there a way let component works only inside the package, without registered in service provider.

thank you

If you do not want to register it, you can mount it using LivewireManager class, just take a look at it and let me know if you still have questions.

can you give example, how to do it?