import { type ElementType } from 'react'; import type { TabsProps } from './types'; /** * Tabs root component providing context and state management for tab navigation. * Supports controlled/uncontrolled patterns with full keyboard navigation. */ export declare const Tabs: { ({ id: providedId, value: controlledValue, defaultValue, onValueChange, orientation, activationMode, as, children, ref, ...props }: TabsProps): import("react/jsx-runtime").JSX.Element; displayName: string; };