import { LitElement } from 'lit'; import { SxProps } from '../types.js'; /** * A chip/tag component for labels and badges. * * @slot - Chip content * @csspart chip - The chip container * @attr {string} variant - The chip variant (default | success | error | info) * @attr {string} size - The chip size (sm | md) */ export declare class TcChip extends LitElement { variant: 'default' | 'success' | 'error' | 'info'; size: 'sm' | 'md'; sx: SxProps; static styles: import('lit').CSSResult[]; render(): import('lit').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'tc-chip': TcChip; } } //# sourceMappingURL=tc-chip.d.ts.map