import type { TabProps, TabsProps } from './types'; /** * Вкладка. * @param props Свойства. * @return Элемент. */ export declare function Tab({ name, selected, disabled, onClick, children, className, style, 'data-testid': testId, }: TabProps): import("react").JSX.Element; /** * Блок списка вкладок. * @param props Свойства. * @return Элемент. */ export declare function Tabs({ children, view, stretch, gapSize, className, style, 'data-testid': testId, }: TabsProps): import("react").JSX.Element; export declare namespace Tabs { var Item: typeof Tab; }