import React from "react"; export interface LabelCelebrationAnimationProps { children: React.ReactElement; onAnimationEnd: () => void; } declare function LabelCelebrationAnimation({ children, onAnimationEnd }: LabelCelebrationAnimationProps): React.JSX.Element; export default LabelCelebrationAnimation;