import { FC } from 'react'; interface PlayAnimationProps { animationDuration?: number; className?: string; } /** Display animation a "play" event was emitted * @category React Component * @category UI Controls */ export declare const PlayAnimation: FC; export {};