import { ElementType, HTMLAttributes } from 'react'; /** * GradientText — clips a subtle brand gradient into the text fill for hero * titles / featured numerals. Theme-aware (derived from the live accent), and * legible in high-contrast (the gradient endpoints stay on-accent). Keep it for * the ONE hero heading per page, not body copy. */ export interface GradientTextProps extends HTMLAttributes { as?: ElementType; } export declare function GradientText({ as: Tag, className, children, ...props }: GradientTextProps): import("react/jsx-runtime").JSX.Element; export declare namespace GradientText { var displayName: string; } //# sourceMappingURL=gradient-text.d.ts.map