import * as React from "react";
import { type SpringOptions } from "motion/react";
interface BubbleBackgroundProps extends React.HTMLAttributes<HTMLDivElement> {
    interactive?: boolean;
    transition?: SpringOptions;
    colors?: {
        first: string;
        second: string;
        third: string;
        fourth: string;
        fifth: string;
        sixth: string;
    };
}
declare const BubbleBackground: React.ForwardRefExoticComponent<BubbleBackgroundProps & React.RefAttributes<HTMLDivElement>>;
export { BubbleBackground, type BubbleBackgroundProps };
