import { EventEmitter, OnInit } from '@angular/core'; export declare class Card implements OnInit { /** * Title content for the card. */ title: string; /** * Set to `true` to auto-wrap content in section */ sectioned: boolean; /** * Primary action label. */ primaryFooterActionLabel: string; /** * Callback for the primary action */ primaryFooterAction: EventEmitter; /** * Secondary action label. */ secondaryFooterActionLabel: string; /** * Callback for the secondary action */ secondaryFooterAction: EventEmitter; /** * Card header action label */ headerActionLabel: string; /** * Callback for the card header action */ headerAction: EventEmitter; cardClass: boolean; /** * Set to `true` to display a loading card. */ skeleton: boolean; /** * Display footer state. */ showFooter: boolean; ngOnInit(): void; /** * Emits the cards primary footer action callback */ onPrimaryFooterAction($event: any): void; /** * Emits the cards secondary footer action callback */ onSecondaryFooterAction($event: any): void; /** * Emits the cards header action callback */ onHeaderAction($event: any): void; }