import React from 'react'; import './Tabs.css'; type tabInfoArray = { id: string; title?: string; componentTitle?: React.ReactNode; componentData?: React.ReactNode; data?: string; callBack?: Function | undefined; disabled?: boolean; testId?: string; hasError?: boolean; }; export type tabProps = { tabInfo: Array; activeTab?: string | undefined; type?: 'primary' | 'secondary' | 'tertiary'; className?: string; testId?: string; onKeyDown?: (value: any) => void; version?: 'v1' | 'v2'; tabSize?: 'small' | 'regular'; shouldHaveBorder?: Boolean; enableCarousel?: boolean; carouselContainerElementId?: string; }; declare const Tabs: (props: tabProps) => React.JSX.Element; export default Tabs;