import { AddBackground, Parameter, RemoveBackground } from "./../index";
export interface BackgroundToolboxOptionsInterface {
    add?: AddBackground;
    remove?: RemoveBackground;
}
export declare class BackgroundToolboxOptions implements BackgroundToolboxOptionsInterface, Parameter {
    add?: AddBackground;
    remove?: RemoveBackground;
    constructor(data: any);
    static getAddDescription(): string;
    static getRemoveDescription(): string;
    static fromJson(data: any): BackgroundToolboxOptions;
    toJson(): any;
    clone(): BackgroundToolboxOptions;
}
