import { FC } from "react"; import { BaseProps } from "./text"; interface Props { text?: string; link?: string; openInNew?: boolean; duration?: number; } declare const GTextShine: FC; export default GTextShine;