import * as React from 'react'; import { INotifySignalRData } from './models'; interface INotificationPluginProps { linkApiHubNotify?: string; callApiGetAppNotification?: Function; } interface INotificationPluginStates { isOpenNotifyModal: boolean; appNotifyId?: string; } export declare class NotificationPlugin extends React.Component { constructor(props: any); componentDidMount(): void; initSignalRListenEvent: () => void; private renderIdInfo; renderBodyNotification: (signalRData: INotifySignalRData) => JSX.Element; openNotificationPopup: (signalRData: INotifySignalRData) => void; afterCloseModal: () => void; render(): JSX.Element; } export {};