import { Cauldron } from '../../types'; import React from 'react'; type TabsProps = { children: React.ReactNode; initialActiveIndex?: number; thin?: boolean; orientation?: 'horizontal' | 'vertical'; className?: string; onChange?: ({ activeTabIndex, target }: { activeTabIndex: number; target: HTMLLIElement | null; }) => void; } & Cauldron.LabelProps; declare const Tabs: { ({ children, thin, orientation, initialActiveIndex, className, onChange, ...labelProp }: TabsProps): React.JSX.Element; displayName: string; }; export default Tabs;