import { CatmullRomCurve3, Vector3 } from 'three';
import { NamedFunction3 } from './_Base';
export declare class catmullRomCurve3GetPoint extends NamedFunction3<[CatmullRomCurve3, number, Vector3]> {
    static type(): string;
    func(curve: CatmullRomCurve3, t: number, target: Vector3): Vector3;
}
