import { EventEmitter, OnInit } from '@angular/core'; import { CardAction } from './card-action'; /** * Card action component * * Usage: *
 * // Individual module import
 * import { CardActionModule } from 'patternfly-ng/card';
 * // Or
 * import { CardActionModule } from 'patternfly-ng';
 *
 * @NgModule({
 *   imports: [CardActionModule,...]
 * })
 * export class AppModule(){}
 * 
* * Optional: *
 * import { CardAction } from 'patternfly-ng/card';
 * 
*/ export declare class CardActionComponent implements OnInit { /** * The card filters */ action: CardAction; /** * The event emitted when a filter is selected */ onActionSelect: EventEmitter<{}>; /** * The default constructor */ constructor(); /** * Setup component configuration upon initialization */ ngOnInit(): void; private select; }