import React from 'react'; import { IntentType, ITestableProps } from '../../../types'; export interface ICardProps extends ITestableProps, React.HtmlHTMLAttributes { intent?: IntentType; } export interface ICardImageProps extends ITestableProps, React.DetailedHTMLProps, HTMLImageElement> { roudTop?: boolean; roudBottom?: boolean; alt?: string; } export interface ICardTitleProps extends ITestableProps, React.HtmlHTMLAttributes { subtitle?: boolean; } export interface ICardTextProps extends React.HtmlHTMLAttributes, ITestableProps { }