import { AxiosResponse } from 'axios'; import { GetNotificationParam } from '../dto/notificationService.dto'; declare const NotificationServices: { getNotifications: (params: GetNotificationParam) => Promise; readNotification: (id: string) => Promise; readNotifications: (notificationIds: string[]) => Promise; readAllNotification: () => Promise; }; export default NotificationServices;