import { type TemplateResult } from "lit"; import { GlobalStyle } from "../../internal/global-style.js"; import { type RingType } from "../../internal/ring.js"; /** * {@linkcode Card} renders a card. * * This may be similar to {@linkcode Layout}, * but it needs to be specified to enable header and footer. * * @slot - The main content of the card. * @slot header - The header of the card. * @slot footer - The footer of the card. * @category display */ declare class Card extends GlobalStyle { constructor(); ringType: RingType; /** * Whether to display the header. */ footer: boolean; /** * Whether to display the footer. */ header: boolean; protected render(): TemplateResult<1>; } export default Card; export { Card };