/**
 * @public
 */
export type Vector3Type = {
    x: number;
    y: number;
    z: number;
};
