interface TabPaneProps { label: string; key: string; disabled?: boolean; closable?: boolean; forceRender?: boolean; content?: string; } interface Props { list: TabPaneProps[]; modelValue?: string; type?: "line" | "card" | "editable-card"; size?: "large" | "default" | "small"; centered?: boolean; hideAdd?: boolean; addIcon?: string; tabBarGutter?: number; tabPosition?: "top" | "right" | "bottom" | "left"; animated?: boolean | { inkBar: boolean; tabPane: boolean; }; } declare function __VLS_template(): Partial any>> & { rightExtra?(_: {}): any; }; declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { list: () => { label: string; key: string; content: string; }[]; modelValue: undefined; type: string; size: string; centered: boolean; hideAdd: boolean; addIcon: undefined; tabBarGutter: undefined; tabPosition: string; animated: boolean; }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (...args: any[]) => void; change: (...args: any[]) => void; edit: (...args: any[]) => void; }, string, import('vue').PublicProps, Readonly, { list: () => { label: string; key: string; content: string; }[]; modelValue: undefined; type: string; size: string; centered: boolean; hideAdd: boolean; addIcon: undefined; tabBarGutter: undefined; tabPosition: string; animated: boolean; }>>> & { "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; onChange?: ((...args: any[]) => any) | undefined; onEdit?: ((...args: any[]) => any) | undefined; }, { type: "line" | "card" | "editable-card"; size: "large" | "default" | "small"; modelValue: string; list: TabPaneProps[]; centered: boolean; hideAdd: boolean; addIcon: string; tabBarGutter: number; tabPosition: "top" | "right" | "bottom" | "left"; animated: boolean | { inkBar: boolean; tabPane: boolean; }; }, {}>; declare const _default: __VLS_WithTemplateSlots>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };