import { MmUIComponent } from './component' export interface tab { key: string tab: string } /** Card Component */ export declare class MmCard extends MmUIComponent { /** Card title */ title: string /** Card body's custom style object */ bodyStyle: { [key: string]: string } /** Is loading or not */ loading: boolean /** Tab list in card */ tabList: tab[] /** Current active tab key */ activeTabKey: string }