import { EventEmitter } from '@angular/core';
/**
* Card Timeline
*
* This component generates a card, emitting if the card is clicked.
*
* @example
* Extra content
*/
export declare class CardTimelineComponent {
/**
* Set the card id
*/
id: string;
/**
* Set the title (region 1)
*/
title: string;
/**
* Set the info1 (region 2)
*/
info1: string;
/**
* Set the info2 (region 3)
*/
info2: string;
/**
* Set the status (region 4)
*/
status: string;
/**
* Set the status color: aquamarine, green, red, yellow, purple, grey
*
* Default: grey
*/
color: string;
/**
* Emitter for card clicked.
*/
cardClicked: EventEmitter;
constructor();
/**
* Function called on click of the card. Emit true.
* @param event is null
*/
onCardClicked(event: any): void;
}