import { type PayloadAction } from "@reduxjs/toolkit"; import { type IChatConversationLocal } from "../../model.js"; import { type renameConversationAction } from "../messages/messagesSlice.js"; export declare function onConversationRename({ payload, }: ReturnType | PayloadAction<{ conversation: IChatConversationLocal; title: string; }>): Generator | import("redux-saga/effects").GetContextEffect | import("redux-saga/effects").PutEffect<{ payload: { conversation: IChatConversationLocal; title: string; }; type: "messages/renameConversationSuccessAction"; }> | import("redux-saga/effects").PutEffect<{ payload: { conversation: IChatConversationLocal; error: Error; title?: string; }; type: "messages/renameConversationFailureAction"; }> | import("redux-saga/effects").SelectEffect, void, never>; //# sourceMappingURL=onConversationRename.d.ts.map