import { ColorBackground, Parameter, ImageBackground } from "./../index";
export interface AddBackgroundInterface {
    colorBackground?: ColorBackground;
    imageBackground?: ImageBackground;
}
export declare class AddBackground implements AddBackgroundInterface, Parameter {
    colorBackground?: ColorBackground;
    imageBackground?: ImageBackground;
    constructor(data: any);
    static getColorBackgroundDescription(): string;
    static getImageBackgroundDescription(): string;
    static fromJson(data: any): AddBackground;
    toJson(): any;
    clone(): AddBackground;
}
