/** * Copyright (c) Cisco Systems, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import "../button/Button"; import "../favorite/Favorite"; import "../icon/Icon"; import "../list/List"; import "../list/ListItem"; import "../menu-overlay/MenuOverlay"; import "../tooltip/Tooltip"; import { LitElement } from "lit"; export declare namespace Card { class ELEMENT extends LitElement { title: string; subtitle: string; id: string; info: string; infoAriaLabel: string; menuAriaLabel: string; menuOptions: (string | any)[]; static get styles(): import("lit").CSSResult[]; handleCardClick(): void; handleCardKeyDown(e: KeyboardEvent): void; handleCardMenuEvent(event: MouseEvent, label: string): void; handleCardMenuKeyDown(event: KeyboardEvent, label: string): void; render(): import("lit-html").TemplateResult<1>; } } declare global { interface HTMLElementTagNameMap { "md-card": Card.ELEMENT; } }