import React from 'react';
import { EmojiProps } from '../../Emoji';
import { ProgressIndicatorProps } from '../../ProgressIndicator';
import { TagProps } from '../../Tag';
import { CardLinkType } from '../_utils';
import './cardHeader.less';
export type CardHeaderProps = {
    tag?: TagProps;
    progressIndicator?: ProgressIndicatorProps;
    emoji?: EmojiProps[];
    headingTitle?: string;
    mainLink?: CardLinkType;
    secondLink?: CardLinkType;
    image?: {
        src: string;
        size: 'small' | 'big';
    };
};
declare const CardHeader: React.FC<CardHeaderProps>;
export { CardHeader, };
//# sourceMappingURL=cardHeader.d.ts.map