/**
 * returns the point of a CatmullRomCurve3 at the t position
 *
 * @remarks
 *
 *
 */
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { TypedJsNode } from './_Base';
import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController';
declare class CatmullRomCurve3GetPointJsParamsConfig extends NodeParamsConfig {
    t: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>;
}
export declare class CatmullRomCurve3GetPointJsNode extends TypedJsNode<CatmullRomCurve3GetPointJsParamsConfig> {
    paramsConfig: CatmullRomCurve3GetPointJsParamsConfig;
    static type(): string;
    initializeNode(): void;
    setLines(shadersCollectionController: JsLinesCollectionController): void;
}
export {};
