import { BaseToolbox, ToolboxAnnotationAnnotation, BaseToolboxInterface, Parameter } from "./../index";
export interface ToolboxAnnotationInterface extends BaseToolboxInterface {
    annotation?: ToolboxAnnotationAnnotation;
}
export declare class ToolboxAnnotation extends BaseToolbox implements ToolboxAnnotationInterface, Parameter {
    annotation?: ToolboxAnnotationAnnotation;
    constructor(data: any);
    static getAnnotationDescription(): string;
    static fromJson(data: any): ToolboxAnnotation;
    toJson(): any;
    clone(): ToolboxAnnotation;
}
