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 in the card footer.
     */
    primaryFooterActionLabel: string;
    primaryFooterAction: EventEmitter<any>;
    /**
     * Secondary action in the card footer.
     */
    secondaryFooterActionLabel: string;
    secondaryFooterAction: EventEmitter<any>;
    /**
     * Action in the card header.
     */
    headerActionLabel: string;
    headerAction: EventEmitter<any>;
    cardClass: boolean;
    /**
     * Skeleton state.
     */
    skeleton: boolean;
    showFooter: boolean;
    ngOnInit(): void;
    onPrimaryFooterAction($event: any): void;
    onSecondaryFooterAction($event: any): void;
    onHeaderAction($event: any): void;
}
