import { ISendEmail } from '../../entities/notification.entity'; import { ICommunicationNotifications } from 'notification/entities/communication.notification.entity'; export declare const useNotifications: (key: string) => { sendEmail: (data: ISendEmail) => Promise; sendSMS: (text: string) => Promise; enableToOrganization: (id: string, organizationUri: string) => Promise; disableToOrganization: (id: string, organizationUri: string) => Promise; notifications: { [key: string]: ICommunicationNotifications; }; getNotifications: (filter?: any) => void; notificationsLoading: boolean; notificationsError: import("../../../store").IPayloadError; updateNotification: (notificationId: string, data: Partial) => Promise; };