import * as React from "react"; import { Notification } from "../../../NotificationManager"; export interface NotificationBarItemProps { notification: Notification; } export declare class NotificationBarItem extends React.PureComponent { private timeoutID; constructor(props: NotificationBarItemProps); componentDidMount(): void; componentDidUpdate(_prevProps: NotificationBarItemProps, prevState: { contentExpanded: any; }): void; componentWillUnmount(): void; private closeIconOnClickHandler; private handleOnClick; render(): JSX.Element; private renderActionItem; private renderMessageContent; private renderDropdownContent; }