import { ArxVector3 } from 'arx-convert/types';
import { Vector3 as ThreeJsVector3 } from 'three';
export declare class Vector3 extends ThreeJsVector3 {
    static fromArxVector3({ x, y, z }: ArxVector3): Vector3;
    static fromString(stringifiedVector: string): Vector3;
    static fromThreeJsVector3(vector: ThreeJsVector3): Vector3;
    toArxVector3(): ArxVector3;
    toString(): string;
    adjustToPlayerHeight(): this;
}
