import React from 'react'; import { TabsProps as AntdTabsProps } from 'antd'; import { TabsType as AntdTabsType } from 'antd/lib/tabs'; import { TabPane, TabPaneProps } from './TabPane'; export type { TabsPosition } from 'antd/es/tabs'; export declare type TabsType = AntdTabsType | 'separator' | 'line-simple'; export interface TabsProps extends Omit { type?: TabsType; align?: 'full-width'; disabled?: boolean; editable?: boolean; } export type { TabPaneProps }; export declare const Tabs: React.FC & { TabPane?: typeof TabPane; }; export default Tabs;