import { ReactNode } from "react"; export interface DynamicTabT { tabName: string; anchorId: string; tabContent: ReactNode; } export interface DynamicTabsT { tabs?: { items: DynamicTabT[]; }; dynamic?: boolean; /** When isOrderedList is true, each tab's `tabContent` is rendered as columns of children. */ isOrderedList?: boolean; entryTitle?: string; anchorId?: string; title?: string; subTitle?: string; description?: string; backgroundColor?: "white"; textColor?: "navy"; navigationType?: boolean; mobileSidebarTabType?: boolean; }