import React from "react"; import type { ComponentVariant } from "../NDSProvider/ComponentVariantContext"; type TabButtonProps = React.ComponentPropsWithRef<"button"> & { variant?: ComponentVariant; selected?: boolean; fullWidth?: boolean; }; export type TabProps = TabButtonProps & { label?: React.ReactNode; }; declare const Tab: React.ForwardRefExoticComponent & React.RefAttributes>; export default Tab;