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