import { LitElement } from 'lit'; /** * A container component for the card's main text content. * This component should be used within an igc-card element to display the primary content. * * @element igc-card-content * * @slot - Renders the card text content (e.g., paragraphs, lists). * * @example * ```html * *

This is the main content of the card. It can contain any text or HTML content.

*
* ``` */ export default class IgcCardContentComponent extends LitElement { static readonly tagName = "igc-card-content"; static styles: import("lit").CSSResult[]; static register(): void; constructor(); protected render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'igc-card-content': IgcCardContentComponent; } }