import { MmUIComponent } from './component' /** Tabs component */ export declare class MmTabs extends MmUIComponent { /** Style type */ type: 'card' | 'border-card' | '' /** */ activeName: string /** Whether the label can be closed */ closable: boolean /** Whether tags can be added */ addable: boolean /** Binding value, the name of the TAB selected */ value: any /** Whether tags can be added and closed at the same time */ editable: boolean /** Where the TAB is located */ tabPosition: 'top' | 'right' | 'bottom' | 'left' /** Update the tabBar position */ calcPaneInstances: (isForceUpdate: boolean = false) => void }