import { ComponentType } from 'react';
import { Theme } from './Theme';
export interface DecoratorProps {
    theme: Theme;
    themes: Theme[];
    themeClasses: string;
    themeName: string;
}
export declare type Decorator = ComponentType<DecoratorProps>;
