import { ZArticleCard_Props } from '@zurich/dev-utils/code/ArticleCard'; import { WithImageElement } from './with-image'; import { SizelessIconAttr } from '@zurich/dev-utils/data'; /** ## `` * * Component docs. */ export declare class ZArticleCard extends WithImageElement implements ZArticleCard_Props { readonly _name = "article-card"; header?: ZArticleCard_Props['header']; content?: ZArticleCard_Props['content']; wide?: ZArticleCard_Props['wide']; 'pre-line'?: ZArticleCard_Props['pre-line']; tags?: ZArticleCard_Props['tags']; render(): import('lit-html').TemplateResult<1>; get preLineIcon(): SizelessIconAttr | undefined; get preLine(): string | undefined; get renderPreLine(): true | undefined; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { 'z-article-card': ZArticleCard; } }