import { Ref, InjectionKey, CSSProperties } from 'vue'; export declare type TabsType = 'line' | 'card' | 'bar' | 'segment'; export declare type OnUpdateValue = (value: string & number) => void; export declare type OnUpdateValueImpl = (value: string | number) => void; export declare type OnClose = (name: string & number) => void; export declare type OnCloseImpl = (name: string | number) => void; export declare type OnBeforeLeave = (name: string & number, oldName: string & number & null) => boolean | Promise; export declare type OnBeforeLeaveImpl = (name: string | number, oldName: string | number | null) => boolean | Promise; export interface TabsInjection { mergedClsPrefixRef: Ref; valueRef: Ref; typeRef: Ref; closableRef: Ref; tabStyleRef: Ref; paneStyleRef: Ref; nextTabNameRef: { value: string | number | null; }; onBeforeLeaveRef: Ref; handleTabClick: (panelName: string | number) => void; handleClose: (panelName: string | number) => void; handleAdd: () => void; } export declare type Addable = boolean | { disabled?: boolean; }; export declare const tabsInjectionKey: InjectionKey;