import { LitElement } from 'lit'; /** * Styled blockquote / pull-quote component * * @slot - Quote text content * * @csspart blockquote - The blockquote element * @csspart content - The quote content wrapper * @csspart footer - The citation footer * @csspart cite - The cite element */ export declare class UIBlockquote extends LitElement { static styles: import("lit").CSSResult; variant: 'default' | 'bordered' | 'highlighted' | 'icon'; /** Attribution / citation text */ cite: string; /** URL for citation */ citeUrl: string; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'ui-blockquote': UIBlockquote; } } //# sourceMappingURL=blockquote.d.ts.map