import { BaseToolbox, BaseToolboxInterface, ToolboxRotateRotate, Parameter } from "./../index";
export interface ToolboxRotateInterface extends BaseToolboxInterface {
    rotate?: ToolboxRotateRotate;
}
export declare class ToolboxRotate extends BaseToolbox implements ToolboxRotateInterface, Parameter {
    rotate?: ToolboxRotateRotate;
    constructor(data: any);
    static getRotateDescription(): string;
    static fromJson(data: any): ToolboxRotate;
    toJson(): any;
    clone(): ToolboxRotate;
}
