import type { FC } from 'react'; import { type BlurBackgroundProps } from './blur'; import { type PixelBackgroundProps } from './pixel'; type AnimatedBackgroundProps = ({ variant?: 'pixel'; } & PixelBackgroundProps) | ({ variant?: 'blur'; } & BlurBackgroundProps); export type { AnimatedBackgroundProps }; export declare const AnimatedBackground: FC;