My component files contain sass imports. When I generate the type files for the exposed components, the declaration modules contain the style imports. The style imports is something that should not be there right?
declare module "ui/Component" {
import { HTMLAttributes } from 'react';
import './Component.scss'; <---
export interface Component {
name: string;
...