* // Individual module import
* import { NotificationDrawerModule } from 'patternfly-ng/notification';
* // Or
* import { NotificationDrawerModule } from 'patternfly-ng';
*
* @NgModule({
* imports: [NotificationDrawerModule,...]
* })
* export class AppModule(){}
*
*
* Optional:
*
* import { Notification, NotificationGroup } from 'patternfly-ng/notification';
*
*/
export declare class NotificationDrawerComponent implements OnInit {
/**
* Flag if the drawer can be expanded. Optional, default: false
*/
allowExpand: boolean;
/**
* Flag if the drawer is expanded (only valid if allowExpand is true). Optional, default: false
*/
expanded: boolean;
/**
* Template for the heading area for each notification group,
* access the group via notificationGroup
*/
headingTemplate: TemplateRef