import { Attributes, Component, ViewModelObject } from 'jinge'; export declare const CARD_PROVIDER: unique symbol; export interface CardAttrs { withHover?: boolean; } export declare type CardWrapper = ViewModelObject & { expand: boolean; }; export declare class Card extends Component { static template: string; withHover: boolean; card: CardWrapper; constructor(attrs: Attributes); }