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