/**
 * sets globals properties of the current spot light
 *
 *
 */
import { TypedJsNode } from './_Base';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController';
import { JsType } from '../../poly/registers/nodes/types/Js';
declare class OutputSpotLightJsParamsConfig extends NodeParamsConfig {
}
export declare class OutputSpotLightJsNode extends TypedJsNode<OutputSpotLightJsParamsConfig> {
    paramsConfig: OutputSpotLightJsParamsConfig;
    static type(): JsType;
    initializeNode(): void;
    setLines(linesController: JsLinesCollectionController): void;
}
export {};
