import * as React from 'react'; import { TabsProps, TabPaneProps } from 'antd/es/tabs/index.d'; interface XuiTabPaneProps extends TabPaneProps { key: React.Key; } interface XuiTabNavProps extends TabsProps { tabBarExtraContent?: React.ReactNode; } export interface XuiTabsProps { title?: string | JSX.Element; tabNav: XuiTabNavProps; tabPanes: XuiTabPaneProps[]; } declare const XuiTabs: React.ComponentType; export default XuiTabs;