import type { CSSResultGroup } from 'lit'; import { ShoelaceElement } from '../../internal/shoelace-element'; /** * @summary The quote component indicates that the enclosed text is an extended quotation. * @documentation https://dsa.service-public-autonomie.fr/latest/librairie-webcomponents/quote-citation/web-3w6JfUrH * * @slot details - Details about the quote. * @slot image - Image associated with the quote. */ export default class DSAQuote extends ShoelaceElement { static styles: CSSResultGroup; /** The quote's content */ quote: string; /** The quote's Author */ author: string; /** The quote's url source */ cite: string; /** Details about the quote */ details: string; /** True if the quote has borders */ borders: boolean; /** Size of the quote */ size: 'small' | 'medium'; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'dsa-quote': DSAQuote; } }