/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ export declare function round(number: number, decimalPlaces: number): number; type Vector3Like = { x: number; y: number; z: number; }; interface Vector3InputProps { vector: Vector3Like; label?: string; multiplier?: number; precision?: number; onValidInput?: () => void; marginBottom?: string; } export declare const Vector3Input: ({ vector, label, multiplier, precision, onValidInput, marginBottom, }: Vector3InputProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=vec3.d.ts.map