import * as React from "react";
import { HTMLMotionProps, type Transition } from "motion/react";
interface GradientBackgroundProps extends HTMLMotionProps<"div"> {
    transition?: Transition;
}
declare const GradientBackground: React.ForwardRefExoticComponent<Omit<GradientBackgroundProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export { GradientBackground, type GradientBackgroundProps };
