import { StreamMessage } from '../../../context/ChannelStateContext'; import type { UserResponse } from 'open-chat-js'; import type { ReactEventHandler } from '../types'; import type { DefaultStreamChatGenerics } from '../../../types/types'; export declare const missingUseMuteHandlerParamsWarning = "useMuteHandler was called but it is missing one or more necessary parameter."; export type MuteUserNotifications = { getErrorNotification?: (user: UserResponse) => string; getSuccessNotification?: (user: UserResponse) => string; notify?: (notificationText: string, type: 'success' | 'error') => void; }; export declare const useMuteHandler: (message?: StreamMessage | undefined, notifications?: MuteUserNotifications) => ReactEventHandler; //# sourceMappingURL=useMuteHandler.d.ts.map