import React, { CSSProperties } from 'react';
export type Props = {
    heading: string;
    medicalReview?: {
        link: string;
        reviewer: string;
        date: string;
        avatar?: string;
    };
    color?: string;
    bannerColor?: string;
    style?: CSSProperties;
    className?: string;
    icon?: JSX.Element;
    isPregTool?: boolean;
    isRevamp?: boolean;
};
declare const ToolsBannerCard: ({ className, heading, bannerColor, medicalReview, icon, style, isPregTool, isRevamp, }: Props) => React.JSX.Element;
export { ToolsBannerCard };
