import { ActionTypes } from "../actions/index"; import { Content } from '../interfaces/index'; interface DataState { contents: Content[]; } declare const contentDataReducer: (state: DataState, action: ActionTypes) => { contents: any; }; export default contentDataReducer;