import React from "react"; import { CSSProperties } from "react"; interface TabItem { id: string; title: string; content?: any; dropDown?: any[]; alignEnd?: boolean; } export interface TabsProps { className?: string; style?: CSSProperties; card?: boolean; fullWidth?: boolean; allCaps?: boolean; tabs: TabItem[] | 'dropDown' | 'content'; defaultActiveIndex?: number; } declare const Tabs: ({ className, style, tabs, card, fullWidth, allCaps, defaultActiveIndex, }: TabsProps) => React.JSX.Element; export default Tabs;