import { FC, PropsWithChildren } from "react"; import { TabTypes } from "../NvTabs/types"; /** * Defines the props for the NvTab component. * @property {TabTypes} type - The type of the tab. * @property {string} activeTabId - The id of the active tab. * @property {string} className - The CSS class name for styling. */ export interface NvTabProps { type?: TabTypes; activeTabId?: string; className?: string; } /** * Functional component representing a single tab within a tab navigation system. * * @param type The type of the tab (default is primary). * @param activeTabId The id of the currently active tab. * @param className Additional CSS class names for styling. * @param children The content to be displayed within the tab. * @returns A tab element with dynamic styling based on its active state. */ declare const NvTab: FC>; export default NvTab;