import type { DefineComponent } from "vue"; /** TabPanel component props */ export interface TabPanelProps { title?: string; icon?: string | any[]; disabled?: boolean; closable?: boolean; activeKey?: string | number; } /** TabPanel Vue 3 component */ declare const TabPanel: DefineComponent; export default TabPanel;