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