import * as React from 'react'; import HIDComponentProps from '../ComponentModel/HIDComponentModel'; import '../../../index.scss'; /** * **HIDCard Props** * */ export interface HIDCardProps extends HIDComponentProps { /** card content for display */ content?: any; /**Image */ imageSrc?: any; /**Media title is display the title while hovering the image */ mediaTitle?: string; /** CardAction to move on to the further information */ actionComponent?: any; /** Header Title */ title?: string; /** Header subtitle */ subtitle?: string; /** Callback function for onclick event.*/ onClick?: () => void; } export interface HIDCardState { } /** * ### The API documentation of the HID Card React component. Learn more about the properties and the API Methods. * */ export default class HIDCard extends React.Component { private getCardMedia; private getCardHeader; private getCardComponent; render(): JSX.Element; }