import { BulkUpdateType } from '../constants/generic';
import type { ActionResponse } from '../types';
declare const notificationsBulkUpdates: (token: string, inAppRecipientId: string, data: {
    until: string;
    operation: BulkUpdateType;
    category?: string | undefined;
    isRead?: boolean | undefined;
}) => Promise<ActionResponse>;
export default notificationsBulkUpdates;
