import { default as React } from 'react'; export interface SuccessAnimationProps { shouldDisplay: boolean; animationInLoop?: boolean; height?: number; shouldFade?: boolean; width?: number; onAnimationComplete?: () => void; } declare const SuccessAnimation: React.FC; export default SuccessAnimation;