/// import { type TabsProps as MuiTabsProps } from '@mui/material'; import { type WithoutEmotionSpecific } from '../types'; export type TabsProps = WithoutEmotionSpecific & { nextFeatureFlags?: { /** * @deprecated * Флаг включения нижнего разделителя * В мажорном релизе, флаг будет удален */ hasBottomDivider: boolean; }; }; export declare const Tabs: ({ nextFeatureFlags, ...tabsProps }: TabsProps) => JSX.Element;