import * as React from 'react'; import * as HrvComponents from '../..'; import { IContentProps } from './Content'; interface INotifyCenterProps { callApiGetNotifications?: Function; callApiMarkRead?: Function; callApiMarkReadAll?: Function; callApiGetTotalNotifications?: Function; callApiUpdateTotalNotifications?: Function; callApiUser?: Function; callApiDepartment?: Function; callApiGetAppNotification?: Function; linkApiHubNotify?: string; placement?: HrvComponents.TooltipPlacement; } export declare class NotifyCenter extends React.Component { static Content: React.ClassicComponentClass; private ref_notifyCenter; static defaultProps: { placement: string; }; render(): JSX.Element; } export {};