import type { LocalMessage } from 'stream-chat';
import type { ReactEventHandler } from '../types';
export type DeleteMessageNotifications = {
    getErrorNotification?: (message: LocalMessage) => string;
    notify?: (notificationText: string, type: 'success' | 'error') => void;
};
export declare const useDeleteHandler: (message?: LocalMessage, notifications?: DeleteMessageNotifications) => ReactEventHandler;
