import { ITabSwitcherItem, TabSwitcherProps } from './TabSwitcher.types';

declare const SwitcherNamespace: (({ children, variant, isApart, addClassName, col, }: TabSwitcherProps) => import("react/jsx-runtime").JSX.Element) & {
    Item: import('react').ForwardRefExoticComponent<ITabSwitcherItem & import('react').RefAttributes<HTMLInputElement>>;
};
export { SwitcherNamespace as TabSwitcher };
