import { FC } from "react"; import { BaseProps } from "./text"; import { Easing } from "motion"; interface Props { text?: string; duration?: number; delay?: number; easing?: Easing; } declare const GTextShowUp: FC; export default GTextShowUp;