/// <reference types="react" />
import type { TabsProps } from 'antd/es/tabs';
export interface INavigationTabsProps {
    activeKey?: TabsProps['activeKey'];
    animated?: TabsProps['animated'];
    centered?: TabsProps['centered'];
    defaultActiveKey?: TabsProps['defaultActiveKey'];
    tabBarExtraContent?: TabsProps['tabBarExtraContent'];
    tabBarGutter?: TabsProps['tabBarGutter'];
    tabBarStyle?: TabsProps['tabBarStyle'];
    tabPosition?: TabsProps['tabPosition'];
    destroyInactiveTabPane?: TabsProps['destroyInactiveTabPane'];
    children: React.ReactNode;
    style?: TabsProps['style'];
    className?: TabsProps['className'];
    emptyContent?: boolean;
    renderTabBar?: TabsProps['renderTabBar'];
    onChange?: TabsProps['onChange'];
    onTabClick?: TabsProps['onTabClick'];
    onTabScroll?: TabsProps['onTabScroll'];
}
