import { ComponentType } from 'react';

import { Theme } from './Theme';

export interface DecoratorProps {
  theme: Theme
  themes: Theme[]
  themeClasses: string
  themeName: string
}

export type Decorator = ComponentType<DecoratorProps>;
