import { TabsProps } from './Tabs.types'; /** * Tabs component - A navigation component for switching between views * * @example * ```tsx * const [activeTab, setActiveTab] = useState('tab1'); * * }, * { id: 'tab3', label: 'Settings', disabled: true }, * { id: 'tab4', label: 'Notifications', badgeText: '5' }, * ]} * activeTab={activeTab} * onTabChange={setActiveTab} * variant="underline" * size="md" * /> * * // Scrollable tabs for many items * * * // Expanded tabs that fill width * * * // Primary (filled) variant * * ``` */ export declare const Tabs: import('react').ForwardRefExoticComponent>; export default Tabs; //# sourceMappingURL=Tabs.d.ts.map