import { Parameter, SelectionRemove } from "./../index";
export interface RemoveToolboxAnnotationInterface {
    selection: SelectionRemove;
}
export declare class RemoveToolboxAnnotation implements RemoveToolboxAnnotationInterface, Parameter {
    selection: SelectionRemove;
    constructor(data: any);
    static getSelectionDescription(): string;
    static fromJson(data: any): RemoveToolboxAnnotation;
    toJson(): any;
    clone(): RemoveToolboxAnnotation;
}
