/**
 * gets globals properties of a 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 GlobalsSpotLightJsParamsConfig extends NodeParamsConfig {
}
export declare class GlobalsSpotLightJsNode extends TypedJsNode<GlobalsSpotLightJsParamsConfig> {
    paramsConfig: GlobalsSpotLightJsParamsConfig;
    static type(): JsType;
    initializeNode(): void;
    setLines(linesController: JsLinesCollectionController): void;
}
export {};
