import React from 'react';
export type CardImageProps = {
    src: string;
    alt: string;
    position?: 'start' | 'end';
};
export declare function CardImage({ src, alt, position }: CardImageProps): React.JSX.Element;
