/**
 * gets the position where a ray intersects with a box3
 *
 * @remarks
 *
 *
 */
import { BaseRayBox3JsNode } from './_BaseRayBox3';
import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController';
export declare class RayIntersectBoxJsNode extends BaseRayBox3JsNode {
    static type(): string;
    initializeNode(): void;
    setLines(shadersCollectionController: JsLinesCollectionController): void;
}
