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