import { ObjectAbstract } from '../../../common/object-abstract';
import { LightType, LightEntityAtomType, IGenerate } from '../../../common/interface/light';
import { ObjectController } from '../../../common/object-controller';
/**
 * @public
 * @class Light
 * @extends ObjectController
 * @implements ObjectAbstract
 */
declare class Light extends ObjectController implements ObjectAbstract {
    className: string;
    private LightEntityAtom;
    /**
     * @constructor
     * @param {LightType} opt (optional)
     */
    constructor(opt?: LightType);
    /**
     * @public
     * @function GetScheme
     * @returns {{LightEntityAtom: LightEntityAtomType}}
     */
    GetScheme(): {
        LightEntityAtom: LightEntityAtomType;
    };
    /**
     * @public
     * @function GetData
     * @returns {LightType}
     */
    GetData(): LightType;
    /**
     * @public
     * @function SetData
     * @param {LightType} opt
     * @returns {void}
     */
    SetData(opt: LightType): void;
    /**
     * @public
     * @function generateAtomData
     * @param {LightType} opt
     * @returns {IGenerate}
     */
    generateAtomData(opt: LightType): IGenerate;
    /**
     * @public
     * @function GetValidateRules
     * @returns {LightType}
     */
    GetValidateRules(): LightType;
    /**
     * @public
     * @function Validate
     * @param {LightType} opt
     * @returns {void}
     */
    Validate(opt: LightType): void;
}
export default Light;
