import { AllowedComponentProps, VNodeProps } from '../common' declare interface TabsTabPaneProps { /** 标签索引 */ index?: number; /** 标签标识符 */ id?: string | number; /** 是否延迟渲染 */ lazy?: boolean; /** 是否激活 */ active?: boolean; /** 是否销毁 */ destroyOnInactive?: boolean; /** 自定义CSS类 */ customClass?: string; } declare interface _TabsTabPane { new(): { $props: AllowedComponentProps & VNodeProps & TabsTabPaneProps } } export declare const TabsTabPane: _TabsTabPane export default TabsTabPane export type { TabsTabPaneProps }