This error occurs when you have not explicitly given a type to a value. Resulting in the implicit assignment of the type "never" to the value. The "never" type always expects the value to the empty and throws an error when its not empty.
This error occurs when you are not passing all the required props or only passing some of the required props to the component. Pass all the props or define the typing of the component accordingly to handle this error.