import { PropType } from 'vue'; import { TabsVariantProps } from './tabs.themes'; export declare const tabsProps: { modelValue: { type: PropType; }; variant: { type: PropType; }; radius: { type: PropType; }; color: { type: PropType; }; size: { type: PropType; }; isFullWidth: { type: PropType; }; isDisabled: { type: PropType; }; }; export declare const tabItemProps: { value: { type: PropType; }; isDisabled: { type: PropType; }; };