import { TabsItem } from "./TabsItem"; /** * Tokens valid for the scroll-mode fade gradient. Adding a new token here * requires Tailwind to see the literal `from-…` class string in the lookup * map below — a template-literal `from-${value}` is invisible to the JIT * scan and would silently produce no gradient. */ export type TabsGradientColor = "surface-default" | "surface-high" | "surface-higher"; export type TabsProps = Readonly<{ overflow?: "wrap" | "scroll"; bgGradientColor?: TabsGradientColor; }> & React.ComponentProps<"div">; export declare const Tabs: React.FC & { Item: typeof TabsItem; }; //# sourceMappingURL=Tabs.d.ts.map