import { Key, PropsWithChildren, ReactNode } from "react"; export declare type TabPaneBaseType = { key?: Key; current?: any; title?: ReactNode | (() => ReactNode); num?: number; disabled?: boolean | (() => boolean); /** * 用于给activeTabChange事件传递参数 */ values?: Record; }; export declare type TabPanePropsType = PropsWithChildren;