import { SelectionBackground, Parameter } from "./../index";
export interface RemoveBackgroundInterface {
    backgroundSelection?: SelectionBackground;
}
export declare class RemoveBackground implements RemoveBackgroundInterface, Parameter {
    backgroundSelection?: SelectionBackground;
    constructor(data: any);
    static getBackgroundSelectionDescription(): string;
    static fromJson(data: any): RemoveBackground;
    toJson(): any;
    clone(): RemoveBackground;
}
