import * as React from "react"; import { NotificationBarActionProps } from "./NotificationBarAction.definitions"; /** * @classdesc This component is used to render action is notification bar * @class NotificationBarAction * @component * @category Components / Basic * @param {NotificationBarAction.NotificationBarActionProps} props - Properties to be passed to configure this component. * @hideconstructor * @private */ export declare class NotificationBarAction extends React.PureComponent { static defaultProps: { notification: {}; }; private handleOnClick; render(): JSX.Element; renderIcon(): JSX.Element; renderLabel(): React.ReactText | JSX.Element; }