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-runtime").JSX.Element; export {}; //# sourceMappingURL=GradientText.d.ts.map