/**
 * gets globals properties of the current object or point
 *
 *
 */
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 GlobalsJsParamsConfig extends NodeParamsConfig {
}
export declare class GlobalsJsNode extends TypedJsNode<GlobalsJsParamsConfig> {
    paramsConfig: GlobalsJsParamsConfig;
    static type(): JsType;
    initializeNode(): void;
    setLines(linesController: JsLinesCollectionController): void;
}
export {};
