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