import type { ComponentPropsWithRef, ElementType } from 'react'; export type TabsProperties = { /** Orientation */ orientation?: 'horizontal' | 'vertical'; /** Stacked */ stacked?: boolean; /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Organizational element that separates content and allows users to switch between views. * @docs {@link https://design.visa.com/components/tabs/?code_library=react | See Docs} * @related tab, tab-suffix, use-tabs * @vgar TODO * @wcag TODO */ declare const Tabs: { ({ className, orientation, stacked, tag: Tag, ...remainingProps }: TabsProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Tabs;