import type { Recap } from '@mattermost/types/recaps'; import type { MMReduxAction } from 'mattermost-redux/action_types'; export type RecapsState = { byId: Record; allIds: string[]; }; export default function recapsReducer(state: RecapsState | undefined, action: MMReduxAction): RecapsState;