import * as React from "react";
export interface RichContentCardProps {
    link: {
        label: string;
        href: string;
    };
    labelsWithIcon: {
        label: string;
        icon: JSX.Element;
    }[];
    tags: string[];
    contentLinks?: {
        title: string;
        subTitle: string;
        href: string;
    }[];
    linkIsExternal?: boolean;
}
export declare const RichContentCard: React.FC<RichContentCardProps>;
