import { LitElement } from 'lit';
/** A container which wraps different elements related to a single subject
 * @element igc-card
 *
 * @slot - Renders card content
 */
export default class IgcCardComponent extends LitElement {
    static readonly tagName = "igc-card";
    static styles: import("lit").CSSResult[];
    static register(): void;
    /**
     * Sets card elevated style, otherwise card looks outlined.
     * @attr
     */
    elevated: boolean;
    constructor();
    protected render(): import("lit-html").TemplateResult<1>;
}
declare global {
    interface HTMLElementTagNameMap {
        'igc-card': IgcCardComponent;
    }
}
