import { DescriptionConfig } from './CardContainerLogic';
import React from 'react';
export declare type IconOptions = {
    [index: string]: string;
};
export declare type HeaderCardProps = {
    rgbIndex?: number;
    type: string;
    title: string;
    subTitle?: string;
    description: string;
    secondaryLabelLimit?: number;
    values?: string[][];
    isAlignToLeftNav?: boolean;
    descriptionConfig?: DescriptionConfig;
    href?: string;
    target?: string;
    icon: JSX.Element;
};
declare const HeaderCard: React.FunctionComponent<HeaderCardProps>;
export default HeaderCard;
