import type { Recap } from '@mattermost/types/recaps'; import type { ActionFuncAsync } from 'mattermost-redux/types/actions'; export declare function createRecap(title: string, channelIds: string[], agentId: string): ActionFuncAsync; export declare function getRecaps(page?: number, perPage?: number): ActionFuncAsync; export declare function getRecap(recapId: string): ActionFuncAsync; export declare function markRecapAsRead(recapId: string): ActionFuncAsync; export declare function regenerateRecap(recapId: string): ActionFuncAsync; export declare function deleteRecap(recapId: string): ActionFuncAsync;