import React from 'react';
export type CardIconProps = {
variant?: string;
src: string;
rawContent?: string;
position?: 'auto' | 'start' | 'center' | 'end';
};
export declare function CardIcon({ variant, src, rawContent, position }: CardIconProps): React.JSX.Element;