import { type Reducer } from 'redux'; import type { ThemeState } from './types/index.js'; export declare const INITIAL_STATE: ThemeState; export declare const getError: (state: ThemeState) => ThemeState['error']; export declare const getIsLoading: (state: ThemeState) => ThemeState['isLoading']; export declare const getResult: (state: ThemeState) => ThemeState['result']; /** * Reducer for styleguide theme. * * @param state - Current redux state. * @param action - Action dispatched. * * @returns New state. */ declare const ThemeReducer: Reducer; export default ThemeReducer;