import type { ClassName, TComponentIcon } from "@helpers/types"; interface Tab { id: string; label: string; icon?: TComponentIcon; } export interface NavTabsProps extends ClassName { layout?: "horizontal" | "vertical"; tabs: Tab[]; activeTab: string; onClick: (id: string) => void; type?: "filled" | "outlined" | "line"; tabClassName?: string; } export {};