import * as React from 'react'; import { INotification } from './models'; interface ItemProps { data: INotification; onClickMarkRead: Function; callApiUser: Function; callApiDepartment: Function; } export declare class Item extends React.Component { private onClickMarkRead; private renderModule; private renderIdInfo; render(): JSX.Element; } export {};