import { Base } from "../base/Base";
import { App } from "../core/App";
import { SkyBox } from "./SkyBox";
export declare class Background extends Base {
    private _img;
    _skybox: SkyBox;
    constructor(app: App);
    /**
     * 设置背景效果
     */
    setBackgroundEffect(): Promise<void>;
}
