import { EventEmitter } from '@angular/core'; import { UtilsService } from '../../services/utils.service'; /** * Questo componente รจ una semplice card */ export declare class CardComponent { utils: UtilsService; /** * The title of the card */ title: string; /** * Represents if panel is opened or not */ opened: boolean; /** * Invocato quando l'utente clicca sulla titlebar */ toggle: EventEmitter; constructor(utils: UtilsService); }