import { Component } from 'react'; interface EleAnimationProps { pathColor: any; animateTime: number; } interface EleAnimationStates { strokeDashOffset: any; } export default class EleAnimation extends Component { static defaultProps: { pathColor: string; animateTime: number; }; constructor(props: EleAnimationProps); componentDidMount(): void; render(): JSX.Element; } export {};