///
import { BadgeProps as BaseProps } from '@salutejs/plasma-core';
export declare const badgeViews: {
primary: {
backgroundColor: string;
color: string;
};
secondary: {
backgroundColor: string;
color: string;
};
warning: {
backgroundColor: string;
color: string;
};
};
export declare type BadgeView = keyof typeof badgeViews;
export interface BadgeProps extends BaseProps {
/**
* Вид компонента
*/
view?: BadgeView;
}
/**
* Небольшая бирка для ячеек и карточек.
* Компонент может отображаться в нескольких размерах и цветах, может содержать текст и/или иконку.
*/
export declare const Badge: import("styled-components").StyledComponent, any, BadgeProps, never>;