import type { BasicType } from '../../_utils'; import type { PropType, ExtractPropTypes } from 'vue'; export declare const Props: { /** 每个标签的 key */ readonly name: BasicType, string | number | null>; /** label 上显示的文字 */ readonly label: BasicType, string | null>; /** 是否懒加载 */ readonly lazy: BasicType; }; /** tabs-pane 组件 props 类型 */ export type TabsPaneProps = ExtractPropTypes;