/// <reference types="react" />
import { ICON_COLORS } from "../../Icon/consts";
import type { Props, Type } from "./types";
export declare const getIconColor: (type: Type) => "info" | "success" | "warning" | "critical" | ICON_COLORS.SECONDARY;
export declare const StyledBadgeListItem: import("styled-components").StyledComponent<"li", any, {}, never>;
export declare const StyledVerticalBadge: import("styled-components").StyledComponent<"div", any, {
    $type?: Props["type"];
}, never>;
export declare const StyledBadgeContent: import("styled-components").StyledComponent<"div", any, {}, never>;
declare const BadgeListItem: ({ icon, strikeThrough, type, size, dataTest, children, }: Props) => JSX.Element;
export default BadgeListItem;
