import * as React from "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 ItemWrapper: ({ children, dataTest }: {
    children: any;
    dataTest: any;
}) => React.JSX.Element;
export declare const VerticalBadge: ({ icon, type, iconLabel, }: {
    icon: React.ReactNode;
    type: Props["type"];
    iconLabel?: string | undefined;
}) => React.JSX.Element;
export declare const BadgeContent: ({ children, style, }: {
    children: React.ReactNode;
    style?: React.CSSProperties | undefined;
}) => React.JSX.Element;
declare const BadgeListItem: ({ icon, strikeThrough, type, size, dataTest, children, iconLabel, }: Props) => React.JSX.Element;
export default BadgeListItem;
//# sourceMappingURL=index.d.ts.map