import { CSSResultGroup, TemplateResult } from 'lit'; import { SbbElement } from '../core/base-elements.ts'; /** * It displays brief and compact information. * * @slot - Use the unnamed slot to add content to the `sbb-chip-label`. */ export declare class SbbChipLabelElement extends SbbElement { static readonly elementName: string; static styles: CSSResultGroup; /** Size of the chip. */ accessor size: 'xxs' | 'xs' | 's'; /** Color of the chip. */ accessor color: 'milk' | 'charcoal' | 'white' | 'granite'; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-chip-label': SbbChipLabelElement; } } //# sourceMappingURL=chip-label.component.d.ts.map