/// import { TabsProps } from './Tabs'; import Pane, { TabPaneProps } from './Pane'; import { TabBarPositions, Sizes, StyleTypes } from './shared'; declare const ExportTabs: import("react").NamedExoticComponent & { readonly type: ({ activeKey: _activeKey, defaultActiveKey, onChange: _onChange, destroyInactiveTabPane, children, className, tabBarPosition, direction, styleType, size, extra, ...restProps }: TabsProps) => JSX.Element; } & { Pane: typeof Pane; /** @private 请勿使用 */ StyleTypes: typeof StyleTypes; /** @deprecated 请勿使用 */ StyleType: typeof StyleTypes; /** @private 请勿使用 */ Sizes: typeof Sizes; /** @deprecated 请勿使用 */ Size: typeof Sizes; /** @private 请勿使用 */ TabBarPositions: typeof TabBarPositions; /** @deprecated 请勿使用 */ Position: typeof TabBarPositions; }; export default ExportTabs; export type { TabsProps, TabPaneProps };