import { ComponentPropsWithRef } from 'react'; import { WithoutSharedProperties } from '../utils/polymorphicTypes'; type ThemeProps = 'dark' | 'light' | 'transparent'; export interface PropsAnimatedBackground extends WithoutSharedProperties> { theme?: ThemeProps; bubbleGradiant1?: [string, string]; bubbleGradiant2?: [string, string]; bubbleGradiant3?: [string, string]; zIndex?: number; className?: string; } export declare const AnimatedBackground: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; export {};