import { TabsProps, TabPaneProps } from 'antd'; import React from 'react'; export declare const UniTabs: { ({ children, [SLOT.dnd]: dataDnd, [SLOT.id]: dataId, style, theme, ...rest }: TabsProps & { [key: string]: any; dnd?: string; children?: React.ReactNode; }): React.JSX.Element; TabPane: (props: TabPaneProps & { [key: string]: any; children?: React.ReactNode; }) => React.JSX.Element; }; export declare const UniTabsPane: (props: TabPaneProps & { [key: string]: any; children?: React.ReactNode; }) => React.JSX.Element;