import React from 'react'; import type { TabsProps as BaseProps } from '@sberdevices/plasma-core'; import { TabsViewProps } from './TabsView'; interface AnimatedProps { animated?: true; index?: number; } interface UnAnimatedProps { animated?: false; index?: never; } export declare type TabsProps = (AnimatedProps | UnAnimatedProps) & BaseProps & TabsViewProps; /** * Контейнер вкладок со слайдером */ export declare const Tabs: React.ForwardRefExoticComponent<(AnimatedProps & BaseProps & TabsViewProps & React.RefAttributes) | (UnAnimatedProps & BaseProps & TabsViewProps & React.RefAttributes)>; export {}; //# sourceMappingURL=Tabs.d.ts.map