The easiest way to fix it is to create a styled.d.ts
file in the root of the project and paste this code:
import theme from '@/constants/theme'; // Your path
import 'styled-components';
declare module 'styled-components' {
type MyTheme = typeof theme;
interface DefaultTheme extends MyTheme {}
}