import { BoxProps } from "../Box"; import { STATUS_VARIANT } from "../../types"; import { ICON_TYPE } from "../Icon"; export declare enum STATUS_LABEL_ICON_POSITION { LEFT = "left", RIGHT = "right" } export interface StatusLabelProps extends BoxProps { icon?: ICON_TYPE; iconPosition?: STATUS_LABEL_ICON_POSITION; iconFontSize?: string; variant?: STATUS_VARIANT; colorLabel?: boolean; removeIcon?: boolean; } export declare const StatusLabel: (props: StatusLabelProps) => JSX.Element;