export declare class Card {
host: HTMLElement;
/** Set Card width */
width: string;
/** Set Card height */
height: string;
/** Set Card max height */
maxHeight: string;
/** Set Card shadow elevation */
elevation: number;
/** Set Card padding */
padding: number;
/** Set Card title */
cardTitle: string;
/** Function executed when click on card */
onAction: Function;
actionButtons: HTMLMaterialsCardActionElement[];
actionIcons: HTMLMaterialsCardActionElement[];
fullBleedAction: boolean;
private mdcCardEl;
componentWillLoad(): Promise;
componentDidLoad(): void;
render(): any;
}