import { UUICardElement } from '../../../../external/uui/index.js'; /** * @element umb-figure-card * @slot - slot for the default content area * @slot tag - slot for the tag with support for `` elements * @slot actions - slot for the actions with support for the `` element */ export declare class UmbFigureCardElement extends UUICardElement { #private; /** * Name * @type {string} * @attr name * @default '' */ name: string; /** * Description * @type {string} * @attr description * @default undefined */ description?: string; get backgroundColor(): string | undefined; set backgroundColor(value: string | undefined); render(): import("lit-html").TemplateResult<1>; static styles: import("lit").CSSResult[]; } declare global { interface HTMLElementTagNameMap { 'umb-figure-card': UmbFigureCardElement; } }