import React from 'react';
import { IBaseElement, IVersion, IElevation } from '../types';
export declare type ICardImage = IBaseElement & {
    version?: IVersion;
    elevation?: IElevation;
    alt?: string;
    image?: string;
    shape?: 'all' | 'none' | 'top' | 'left' | 'bottom' | 'right';
    marginHorizontal?: boolean;
};
declare const CardImage: React.FC<ICardImage>;
export default CardImage;
