import * as React from 'react'; import {PropsWithChildren} from "react"; export interface BounceAnimationProps { dataHook?: string; children: React.ReactNode; active?: boolean; onStart?: (event: React.AnimationEvent) => void; onEnd?: (event: React.AnimationEvent) => void; loop?: boolean; delay?: string | number; } export default class BounceAnimation extends React.PureComponent> {}