import { Task } from '@wireapp/promise-queue'; /** * Will queue a rejoin task for a conversation. This could be useful if conversation is out of sync with current epoch * @param groupId the groupId in which we will trigger the rejoin (will be used as ID, in order not to add another rejoin task for the same conversation if it's already in the queue) * @param rejoinFn the function to be executed to trigger the rejoin */ export declare function queueConversationRejoin(groupId: string, rejoinFn: Task): Promise; export declare function resumeRejoiningMLSConversations(): void; export declare function pauseRejoiningMLSConversations(): void; //# sourceMappingURL=conversationRejoinQueue.d.ts.map