import { type Reducer } from 'redux'; import type { ContentsState } from './types/index.js'; export declare const INITIAL_STATE_CONTENT: ContentsState; export declare const getContentResult: (state: ContentsState) => ContentsState['searchResults']; export declare const getContentTypes: (state: ContentsState) => ContentsState['contentTypes']; export declare const getSEOmetadata: (state: ContentsState) => ContentsState['metadata']; export declare const getContentTypesError: (state: ContentsState) => ContentsState['contentTypes']['error']; /** * Reducer for contents state. * * @param state - Current redux state. * @param action - Action dispatched. * * @returns New state. */ declare const contentsReducer: Reducer; export default contentsReducer;