export default Motion;
declare class Motion {
    /**
     * @readonly
     * @type {Vector3}
     */
    readonly velocity: Vector3;
    toJSON(): {
        velocity: {
            x: number;
            y: number;
            z: number;
        };
    };
    fromJSON(json: any): void;
}
declare namespace Motion {
    let typeName: string;
}
import Vector3 from '../../../core/geom/Vector3.js';
//# sourceMappingURL=Motion.d.ts.map