For a quick solution I just wrote Slider into a variable with any type here is an example:
import Slider from "react-slick";
const SliderCustom: any = Slider;
const SomeComp = () => {
return (
<SliderCustom {...settings}>
....
</SliderCustom>
)
}