import { ReactNode } from 'react'; interface GradientTextProps { children: ReactNode; className?: string; colors?: string[]; animationSpeed?: number; showBorder?: boolean; } export default function GradientText({ children, className, colors, animationSpeed, showBorder, }: GradientTextProps): import("react").JSX.Element; export { GradientText };