import m from 'mithril'; import { IAttrs, ISizeAttrs } from '../../_shared'; export interface ICardAttrs extends IAttrs, ISizeAttrs { /** Degree of card shadow */ elevation?: number; /** Fills width of parent container */ fluid?: boolean; /** Adds interactive hover/active styling */ interactive?: boolean; [htmlAttrs: string]: any; } export declare class Card implements m.Component { view({ attrs, children }: m.Vnode): m.Vnode; }