import type { CSSResultGroup } from 'lit'; import DSAIcon from '../icon/icon'; import { ShoelaceElement } from '../../internal/shoelace-element'; /** * @summary Error Text can be used to display an error message under an input or a fieldset * * @dependency dsa-icon * * @slot - The error-text's main content. */ export default class DSAErrorText extends ShoelaceElement { static styles: CSSResultGroup; static dependencies: { 'dsa-icon': typeof DSAIcon; }; /** The error variant. */ variant: 'base' | 'layer' | 'floating'; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'dsa-error-text': DSAErrorText; } }