Based on this Stack Overflow thread (https://stackoverflow.com/questions/8966397/why-does-implementing-this-generic-interface-create-an-ambiguous-reference), the error you're encountering maybe as a result of multiple classes or interfaces with the same name in the scope, and the compiler cannot determine which one to use.
There maybe conflicting imports too. Try to check your imports and inheritance hierarchy for any conflicts.
As a troubleshooting step, try cleaning and rebuilding your project to eliminate any cached artifacts or conflicting files that could be contributing to the issue.
If not too, you can maybe copy and paste the specific error message and relevant portions of the code for a more targeted help