import React from 'react'; export default function AnimateBox({ type, children, customBackground, }: { children?: React.ReactNode | React.ReactNode[]; type: 'glow' | 'rotate'; customBackground?: string; }): React.JSX.Element;