import { BackgroundBaseSettings, Parameter, BackgroundFileData } from "./../index";
export interface ImageBackgroundInterface {
    image: BackgroundFileData;
    settings?: BackgroundBaseSettings;
}
export declare class ImageBackground implements ImageBackgroundInterface, Parameter {
    image: BackgroundFileData;
    settings?: BackgroundBaseSettings;
    constructor(data: any);
    static getImageDescription(): string;
    static getSettingsDescription(): string;
    static fromJson(data: any): ImageBackground;
    toJson(): any;
    clone(): ImageBackground;
}
