import { Parameter, EditComment, AddComment } from "./../index";
export interface CommentToolboxAnnotationInterface {
    add?: AddComment;
    edit?: EditComment;
}
export declare class CommentToolboxAnnotation implements CommentToolboxAnnotationInterface, Parameter {
    add?: AddComment;
    edit?: EditComment;
    constructor(data: any);
    static getAddDescription(): string;
    static getEditDescription(): string;
    static fromJson(data: any): CommentToolboxAnnotation;
    toJson(): any;
    clone(): CommentToolboxAnnotation;
}
