import { IBaseOptions } from "../options"; import { IInfoResult } from "./info"; /** * Rotates an image by a specified number of degrees. * * @param {IRotateOptions} options * @returns {Bluebird} */ export declare function rotate(options: IRotateOptions): Promise; export interface IRotateOptions extends IBaseOptions { /** * Number of degrees to rotate the image. */ degree: number; }