import { ComponentInterface } from '../../stencil-public-runtime'; /** * The ino-card is a flexible and extensible component. It features a header, content, and footer slot that can be used to * fully customize the appearance of the card. * * @slot header - For the element to be placed in the card header * @slot content - For card content * @slot footer - For the element to be placed in the card footer */ export declare class Card implements ComponentInterface { el: HTMLInoCardElement; /** * Selects the card and displays a check mark icon on top of the card */ selected: boolean; /** * Disables the hover effect if true */ disableElevation: boolean; render(): any; }