import { OnInit, EventEmitter, OnChanges, SimpleChanges } from '@angular/core'; export declare class CardComponent implements OnInit, OnChanges { one: string; two: string; three: string; icon: string; colorIcon: string; iconTitle: string; actionCard: EventEmitter; actionIcon: EventEmitter; constructor(); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; handlerCard(event: any): void; handlerIcon(event: any): void; }