import * as React from 'react'; import { IAnimationExampleProps } from './AnimationExample.types'; export interface IAnimationExampleState { isReadyToPlay: boolean; isAnimating: boolean; } export declare class AnimationExample extends React.Component { state: { isReadyToPlay: boolean; isAnimating: boolean; }; render(): JSX.Element; play: () => void; }