* // Individual module import
* import { CardFilterModule } from 'patternfly-ng/card';
* // Or
* import { CardFilterModule } from 'patternfly-ng';
*
* @NgModule({
* imports: [CardFilterModule,...]
* })
* export class AppModule(){}
*
*
* Optional:
*
* import { CardFilter, CardFilterPosition } from 'patternfly-ng/card';
*
*/
export declare class CardFilterComponent implements OnInit {
/**
* The card filters
*/
filters: CardFilter[];
/**
* The event emitted when a filter is selected
*/
onSelect: EventEmitter<{}>;
private _currentFilter;
/**
* The default constructor
*/
constructor();
/**
* Setup component configuration upon initialization
*/
ngOnInit(): void;
private select;
/**
* Returns the current filter
*
* @returns {CardFilter} The current filter
*/
/**
* Sets the current filter
*
* @param {CardFilter} filter The current filter
*/
currentFilter: CardFilter;
}