/// <reference types="react" />
import { NotificationType, NotificationSize, NotificationColor } from "./";
type StyledProps = {
    notificationType: NotificationType;
    notificationSize?: NotificationSize;
    notificationColor?: NotificationColor;
    hasIcon: boolean;
};
export declare const StyledBadge: import("@emotion/styled").StyledComponent<{
    theme?: import("@emotion/react").Theme;
    as?: import("react").ElementType<any>;
} & StyledProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
export {};
