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