/** * Компонент Badge. */ export declare const Badge: import("react").FunctionComponent & ((import("react").HTMLAttributes & { text?: string; customColor?: string; customBackgroundColor?: string; maxWidth?: import("react").CSSProperties["width"]; size?: string; view?: string; } & { contentLeft?: import("react").ReactNode; contentRight?: never; } & { clear?: true; pilled?: never; transparent?: never; } & import("react").RefAttributes) | (import("react").HTMLAttributes & { text?: string; customColor?: string; customBackgroundColor?: string; maxWidth?: import("react").CSSProperties["width"]; size?: string; view?: string; } & { contentLeft?: import("react").ReactNode; contentRight?: never; } & { pilled?: boolean; transparent?: boolean; clear?: never; } & import("react").RefAttributes) | (import("react").HTMLAttributes & { text?: string; customColor?: string; customBackgroundColor?: string; maxWidth?: import("react").CSSProperties["width"]; size?: string; view?: string; } & { contentLeft?: never; contentRight?: import("react").ReactNode; } & { clear?: true; pilled?: never; transparent?: never; } & import("react").RefAttributes) | (import("react").HTMLAttributes & { text?: string; customColor?: string; customBackgroundColor?: string; maxWidth?: import("react").CSSProperties["width"]; size?: string; view?: string; } & { contentLeft?: never; contentRight?: import("react").ReactNode; } & { pilled?: boolean; transparent?: boolean; clear?: never; } & import("react").RefAttributes))>;