import * as React from 'react'; import { INotificationMessage } from './models'; interface INotifyModalProps { isOpen: boolean; afterCloseModal: Function; callApiGetAppNotification?: Function; notifyId?: string; } interface INotifyModalStates { isLoading: boolean; notificationData: INotificationMessage; } export declare class NotifyModal extends React.Component { constructor(props: any); componentDidMount(): void; componentWillReceiveProps(nextProps: any): void; getNotifyData: (id?: string) => void; BodyModal: () => JSX.Element; onModalClose: (afterCloseModal: Function) => void; renderHeader: () => JSX.Element; renderFooter: () => JSX.Element; render(): JSX.Element; } export {};