/** Frame animation direction. */ export declare enum Direction { /** Normal animation direction. */ Forward = "forward", /** Reversed animation direction. */ Reverse = "reverse", /** Animation is played forward and then backward and so on. */ PingPong = "pingpong" }