* // Individual module import
* import { InlineNotificationModule } from 'patternfly-ng/notification';
* // Or
* import { InlineNotificationModule } from 'patternfly-ng';
*
* // NGX Bootstrap
* import { BsDropdownConfig, BsDropdownModule } from 'ngx-bootstrap/dropdown';
*
* @NgModule({
* imports: [InlineNotificationModule, BsDropdownModule.forRoot(),...],
* providers: [BsDropdownConfig]
* })
* export class AppModule(){}
*
*
* Optional:
*
* import { NotificationType } from 'patternfly-ng/notification';
*
*/
export declare class InlineNotificationComponent {
/**
* The notification type (e.g., NotificationType.SUCCESS, NotificationType.INFO, etc.)
*/
type: NotificationType;
/**
* The message to display within the notification
*/
message: string;
/**
* The notification header
*/
header: string;
/**
* Boolean to indicate whether or not notification can be dismissed
*/
dismissable: boolean;
/**
* Indicates whether or not the notification is currently hidden
*/
hidden: boolean;
/**
* The event emitted when the mouse hovers over and leaves a notification
*/
hiddenChange: EventEmitter