import { BaseButton, BpTypeButton } from '@blueprintui/components/internals'; /** * ```typescript * import '@blueprintui/components/include/tag.js'; * ``` * * ```html * item * ``` * * @summary The tag component is used to display labels or categories of information. It can be used to group and categorize similar items, or to label content with a certain type or status. * @element bp-tag * @since 1.0.0 * @slot - badge content * @cssprop --background * @cssprop --color * @cssprop --border * @cssprop --padding * @cssprop --font-size * @cssprop --border-radius * @cssprop --line-height */ export declare class BpTag extends BaseButton implements Pick { /** Defines the visual status type affecting color and semantic meaning */ accessor status: 'accent' | 'success' | 'warning' | 'danger'; static styles: CSSStyleSheet[]; }