import type { GetMessagesSuccessPayloadType, MessageType } from '../hooks/useMessage/MessagesStore/Messagestypes'; export declare type NotificationsContextType = { getNotificationsInit: () => void; getNotificationsSuccess: (_p: { payload: GetMessagesSuccessPayloadType; }) => void; stopLoading: () => void; notifications: MessageType[]; startCursor: string | null | undefined; isLoading: boolean; setNotificationsCount: (_count: number | ((_prev: number) => number)) => void; notificationsCount: number; fetchNotification: (_p: { prevMessages: MessageType[]; }) => Promise; fetchMoreNotifications: () => void; setNotifications: (_u: MessageType[]) => void; }; //# sourceMappingURL=common.types.d.ts.map