import React from 'react';
import { HEALTH_TOOL_NAME } from "../../../interfaces/healthTools";
import { ThumbnailType } from "./types";
export type Props = {
    value: HEALTH_TOOL_NAME;
    isRiskScreener?: boolean;
    heading?: string;
    description?: string;
    thumbnail?: string | ThumbnailType;
    btnLabel?: string;
    dataEventAction?: string;
    hideDescOnMobile?: boolean;
};
declare const ToolBanner: (props: Props) => React.JSX.Element;
export { ToolBanner };
