import { ThemesHash } from "../utils/themes";
export interface ICreatorTheme {
    themeName?: string;
    iconSet?: string;
    isLight?: boolean;
    cssVariables?: {
        [index: string]: string | any;
    };
}
export declare const PredefinedCreatorThemes: string[];
export declare const defaultCreatorThemesOrder: string[];
export declare function registerCreatorTheme(...themes: Array<ThemesHash<ICreatorTheme> | ICreatorTheme>): void;
export declare const CreatorThemes: {
    [index: string]: ICreatorTheme;
};
