import { LitElement } from '@rxdi/lit-html';
import { PalettesUnion } from '../settings';
export interface BadgeOptions {
    boarderRadius: number;
    height: number;
    fontSize: number;
    minWidth: number;
    color: string;
    background: string;
}
/**
 * @customElement rx-badge
 */
export declare class BadgeComponent extends LitElement {
    background: string;
    color: string;
    options: Partial<BadgeOptions>;
    palette: PalettesUnion;
    OnUpdateFirst(): void;
}
