export default AnimationTestApp; declare class AnimationTestApp extends Component { constructor(props: any); state: { boxCount: number; boxPosX: number; pBoxPosX: number; boxPosY: number; applyForNew: boolean; showBox: boolean; }; onMouseEnter: (e: any) => void; onMouseLeave: (e: any) => void; getRects: () => import("../../component.model").IVnode[]; getBoxes: () => import("../../component.model").IVnode[]; } import { Component } from "../../pview";