import type React from 'react'; import type { TabsProps as AntdTabsProps } from 'antd'; export interface TabsProps extends AntdTabsProps { fullHeight?: boolean; hideNav?: boolean; } export declare const Tabs: React.FC;