import { Parameter, SelectionAnnotation } from "./../index";
export interface SelectionRemoveInterface {
    select?: Array<SelectionAnnotation>;
}
export declare class SelectionRemove implements SelectionRemoveInterface, Parameter {
    select?: Array<SelectionAnnotation>;
    constructor(data: any);
    static getSelectDefault(): Array<SelectionAnnotation>;
    static getSelectDescription(): string;
    static fromJson(data: any): SelectionRemove;
    toJson(): any;
    clone(): SelectionRemove;
}
