import { Chat } from '@connectycube/react'; type NotificationHook = { showNotification: (title?: string, body?: string, icon?: string) => Promise; notifyWithSound: (title?: string, body?: string, icon?: string) => Promise; notifyOnMessage: (userId: number, message: Chat.Message) => Promise; playAudio: () => void; }; declare function useNotification(): NotificationHook; export default useNotification; //# sourceMappingURL=useNotification.d.ts.map