/**
 * @export
 * @class Atmosphere
 */
export declare class Atmosphere {
    /**
     * @type {string}
     * @memberof Atmosphere
     */
    mood?: string;
    /**
     * @type {string}
     * @memberof Atmosphere
     */
    lighting?: string;
    /**
     * @type {string}
     * @memberof Atmosphere
     */
    weather?: string;
    constructor(obj?: Partial<Atmosphere>);
}
export default Atmosphere;
