import { LitElement } from 'lit'; /** * A container component that wraps different elements related to a single subject. * The card component provides a flexible container for organizing content such as headers, * media, text content, and actions. * * @element igc-card * * @slot - Renders the card content. Typically contains igc-card-header, igc-card-media, igc-card-content, and igc-card-actions. * * @example * ```html * * *

Card Title

*
Card Subtitle
*
* *

Card content goes here

*
* * * *
* ``` */ export default class IgcCardComponent extends LitElement { static readonly tagName = "igc-card"; static styles: import("lit").CSSResult[]; static register(): void; /** * Sets the card to have an elevated appearance with shadow. * When false, the card uses an outlined style with a border. * * @attr elevated * @default false */ elevated: boolean; constructor(); protected render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'igc-card': IgcCardComponent; } }