* // Individual module import
* import { ActionModule } from 'patternfly-ng/action';
* // Or
* import { ActionModule } from 'patternfly-ng';
*
* // NGX Bootstrap
* import { BsDropdownConfig, BsDropdownModule } from 'ngx-bootstrap/dropdown';
*
* @NgModule({
* imports: [ActionModule, BsDropdownModule.forRoot(),...],
* providers: [BsDropdownConfig]
* })
* export class AppModule(){}
*
*
* Optional:
*
* import { Action, ActionConfig } from 'patternfly-ng/action';
*
*/
export declare class ActionComponent implements DoCheck, OnInit {
private el;
/**
* The action config containing component properties
*/
config: ActionConfig;
/**
* Action template for custom actions
*/
template: TemplateRef