import { THEMES } from '../constants'; export type IThemeState = typeof THEMES[0]; declare const themeReducer: (state: { name: string; className: string; text: string; defaultSettings: import("../..").IThemeSettings; }, action: any) => any; export { themeReducer };