import { LitElement } from 'lit'; export declare type BadgeVariant = 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info'; export declare class BadgeBase extends LitElement { color: 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info'; pill: boolean; pulse: boolean; size: string; circular: boolean; firstUpdated(): void; render(): import("lit-html").TemplateResult<1>; }