import React from 'react'; import { IBaseElement, ITonal, IColor, IVersion, IElevation } from '../types'; export interface ICardImage extends IBaseElement { tonal?: ITonal; color?: IColor; version?: IVersion; elevation?: IElevation; alt?: string; image?: string; shape?: 'all' | 'none' | 'top' | 'left' | 'bottom' | 'right'; marginHorizontal?: boolean; } declare const CardImage: React.FC; export default CardImage;