import { Theme } from "../../types"; export interface IThemeState { value: Theme; } export interface IThemeAction { type: string; theme?: Theme; } declare const themeReducer: (state: IThemeState | undefined, action: IThemeAction) => IThemeState; export default themeReducer;