import { AppActionTypes } from '../actions'; import { ITidyUITheme } from '../theme/types'; /** * Page state props */ export interface IPageState { /** * Theme of the application */ theme?: ITidyUITheme; /** * Title of the page */ title?: string; } /** * Page reducer * * @param {IPageState} prevState previous page state * @param {AppActionTypes} action page actions * @returns {IPageState} mutated page state */ declare const reducer: (prevState: IPageState, action: AppActionTypes) => IPageState; export default reducer;