Is your feature request related to a problem? Please describe.
When configuring a new theme in a project we need to declare the theme object but it is not available on the root to be accessed.
import { Theme as DouroTheme } from '@douro-ui/react/src/tokens/themes/theme.types';
declare module '@emotion/react' {
export interface Theme extends DouroTheme {}
}
Describe the solution you'd like
I must be able to import the theme type from the root.
Is your feature request related to a problem? Please describe. When configuring a new theme in a project we need to declare the theme object but it is not available on the root to be accessed.
Describe the solution you'd like I must be able to import the theme type from the root.