import { LitElement } from 'lit'; import { SxProps } from '../types.js'; /** * A circular symbol/avatar component. * * @slot - Symbol content (icon or text) * @csspart symbol - The symbol container */ export declare class TcSymbol extends LitElement { sx: SxProps; static styles: import('lit').CSSResult; render(): import('lit').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'tc-symbol': TcSymbol; } } //# sourceMappingURL=tc-symbol.d.ts.map