import React from 'react'; import { IconProps } from '../icons/create-styled-icon'; import { LinkWrapperProps } from '../links/link-wrapper/link-wrapper'; import { ThemeStyles } from '../../utils/types/base-styles.type'; export type TabItemProps = { id: string; label: string; icon?: React.ReactNode | string; tag?: string; panel?: React.ReactNode; linkProps?: LinkWrapperProps; type?: string; }; export type TabsProps = { tabs: TabItemProps[]; selectedTab: string; onChange?: (id: string) => void; isScrollable?: boolean; tabUnderlineColor?: string; styles?: {}; tabListStyles?: {}; tabStyles?: {}; tagStyles?: {}; iconStytes?: IconProps; panelStyles?: {}; theme?: ThemeStyles; }; declare const Tabs: React.FC; export default Tabs;