import { Component } from 'react'; interface AnimationControllerProps { children: Function; isAnimating?: boolean; speed?: number; updateAnimation: (x: T) => void; animationWindow?: string; steps?: number[] | null; domain: number[] | null; value: T; baseSpeed?: number; } declare class AnimationControllerType extends Component> { } declare function AnimationControllerFactory(): typeof AnimationControllerType; export default AnimationControllerFactory;