/// import { TabsProps } from 'antd'; export interface TabsNavProps { /** * @description The key of the active tab */ activeKey?: TabsProps['activeKey']; /** * @description Additional className to apply to the component */ className?: string; /** * @description An array of objects representing the tabs to be rendered */ items?: TabsProps['items']; /** * @description Callback function that is triggered when a tab is changed */ onChange?: (activeKey: string) => void; variant?: 'default' | 'compact'; } declare const TabsNav: import("react").NamedExoticComponent; export default TabsNav;