import { type TemplateResult } from "lit"; import { GlobalStyle } from "../../internal/global-style.js"; import { type RingType } from "../../internal/ring.js"; /** * {@linkcode Alert} renders a alert. * * @slot - Alert content. * @slot title - Alert title. * @slot prefix - Alert prefix. * @slot suffix - Alert suffix. * @category feedback */ declare class Alert extends GlobalStyle { constructor(); ringType: RingType; /** * The title is bold and the icon height is the same as it. */ title: string; /** * Content, if zero value, will be rendered as an unnamed slot. */ content: string; protected render(): TemplateResult<1>; static alert(root: HTMLElement, option: Partial): Alert; } export default Alert; export { Alert };