import { CSSResultGroup, TemplateResult, LitElement } from 'lit'; /** * It displays content within a badge. * * @slot - Use the unnamed slot to add content to the badge. * Content parts should be wrapped in `` tags to achieve correct spacings. */ export declare class SbbCardBadgeElement extends LitElement { static styles: CSSResultGroup; /** Color of the card badge. */ color: 'charcoal' | 'white'; private _parentElement?; connectedCallback(): void; disconnectedCallback(): void; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-card-badge': SbbCardBadgeElement; } } //# sourceMappingURL=card-badge.d.ts.map