import Animation from './Animation'; import AnimationOptions from './AnimationOptions'; export interface RotateOptions extends AnimationOptions { /** * The element will be rotated clockwise by this angle. * * **Examples:** * - `360` means the element will do one full clockwise rotation. * - `0` means the element will not rotate. * - `-360` means the element will do one full counter-clockwise rotation. */ degrees: number; /** The proportional rotation angle that is used at the start of the animation. _Defaults to `0`._ */ initial?: number; } /** * The `Rotate` animation rotates an element along the Z-axis. */ declare const Rotate: (options: RotateOptions) => Animation; export default Rotate; //# sourceMappingURL=Rotate.d.ts.map