import React from "react"; export interface LabelCelebrationAnimationProps { /** * The child component that will be wrapped by the animation. */ children: React.ReactElement; /** * Callback fired when the celebration animation ends. */ onAnimationEnd: () => void; } declare function LabelCelebrationAnimation({ children, onAnimationEnd }: LabelCelebrationAnimationProps): React.JSX.Element; export default LabelCelebrationAnimation;