import { TagNavigationItem } from "./TagNavigationItem"; /** * 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 TagNavigationGradientColor = "surface-default" | "surface-high" | "surface-higher"; export type TagNavigationProps = Readonly<{ overflow?: "wrap" | "scroll"; bgGradientColor?: TagNavigationGradientColor; }> & React.ComponentProps<"div">; export declare const TagNavigation: React.FC & { Item: typeof TagNavigationItem; }; //# sourceMappingURL=TagNavigation.d.ts.map