import React from 'react'; type Props = { label: string | React.ReactNode; value: string; disabled?: boolean; unmountOnExit?: boolean; }; type NativeAttrs = Omit, keyof Props>; export type TabsItemProps = Props & NativeAttrs; declare const TabsItem: React.FC>; export default TabsItem;