import { ColorRepresentation, Object3D, PointLight } from 'three';
import { Wireframe } from 'three/examples/jsm/lines/Wireframe.js';
import { ALightHelperWidget } from './ALightHelperWidget';
import { IUiConfigContainer } from 'uiconfig.js';
import { LineMaterial2 } from '../../core';
export declare class PointLightHelper2 extends ALightHelperWidget {
    color: ColorRepresentation | undefined;
    lightSphere: Wireframe;
    light: (PointLight & IUiConfigContainer) | undefined;
    material: LineMaterial2;
    lineWidth: number;
    size: number;
    constructor(light: PointLight, size?: number, color?: ColorRepresentation);
    dispose(): void;
    update(): void;
    static Check(light: Object3D): true;
    static Create(light: Object3D): PointLightHelper2;
}
//# sourceMappingURL=PointLightHelper2.d.ts.map