import { CoreModel } from '../core/core.model'; export declare class TabsModel extends CoreModel { /** * Active card index */ activeCardIndex?: number; /** * If to show card number as icon in card header button */ showCardNumberAsIcon?: boolean; /** * If to show card number as prefix in card header button */ showCardNumberAsPrefix?: boolean; /** * If to show card number before the label */ indexBefore?: boolean; /** * Header position: above (default), right, below, left */ headerPosition?: string; /** @hidden * It is the constructor for the TabsModel component. It takes the values to create the TabsModel object. */ constructor(values?: Object); }