/// import '../styles.css'; export declare type TabsProps = { tabs: { label: string; Component: () => JSX.Element; }[]; orientation?: 'horizontal' | 'vertical'; type?: 'tabs' | 'pills'; className?: string; }; export declare const Tabs: ({ tabs, className, type, orientation }: TabsProps) => JSX.Element;