import { LitElement } from 'lit'; /** * An nile-badge element. * * @fires count-changed - Indicates when the count changes * @slot - This element has a slot * @csspart button - The button */ export declare class NileBadge extends LitElement { static styles: import("lit").CSSResult; /** * Button Lab */ name: number; /** * Button Lab */ icon: string; /** * Button Lab */ active: boolean; get buttonClassMap(): { 'nds-badge--active': boolean; }; /** * Button Lab */ href: string; _hasSlotContent(slotName: string): void; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'nile-badge': NileBadge; } }