import type { ReactEventHandler } from '../types'; import type { StreamMessage } from '../../../context/ChannelStateContext'; import type { DefaultStreamChatGenerics } from '../../../types/types'; export declare type DeleteMessageNotifications = { getErrorNotification?: (message: StreamMessage) => string; notify?: (notificationText: string, type: 'success' | 'error') => void; }; export declare const useDeleteHandler: (message?: StreamMessage | undefined, notifications?: DeleteMessageNotifications) => ReactEventHandler; //# sourceMappingURL=useDeleteHandler.d.ts.map