import type { PropertyDeclarations } from 'lit'; import { ElementSlug } from '../../definitions/enums.js'; import type { CardElementEventMap } from '../../definitions/events.js'; import { AracnaBaseElement as BaseElement } from '../core/base-element.js'; declare global { interface HTMLElementTagNameMap { 'aracna-card': CardElement; } } declare class CardElement extends BaseElement { /** * Properties */ /** */ buttons?: T[]; headline?: string; image?: string; subhead?: string; text?: string; get slug(): ElementSlug; static properties: PropertyDeclarations; } export { CardElement as AracnaCardElement };