import { type ExtractPropTypes } from 'vue'; declare const tabsProps: { type: { type: PropType<"" | "card" | "border-card">; default: string; }; hideContent: BooleanConstructor; activeName: { type: StringConstructor; default: string; }; closable: BooleanConstructor; addable: BooleanConstructor; modelValue: { type: (StringConstructor | NumberConstructor)[]; default: string; }; bars: PropType; editable: BooleanConstructor; tabPosition: { type: PropType<"left" | "right" | "top" | "bottom">; default: string; }; beforeLeave: { type: PropType<(newTabName: string | number, oldTabName: string | number) => void | boolean | Promise>; default: () => boolean; }; stretch: BooleanConstructor; }; export type TabsProps = ExtractPropTypes; declare const _default: any; export default _default;