/** * 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. * * Shared dark UI thumbstick — the 2-row "special" entry. Row 1: the draggable knob (→ * axes) sits in the first column, and live X/Y value fields sit in columns 2 & 3 * so they line up exactly with the Position/Rotation fields above. Row 2: a * click scrub-cell (the stick button) + pin (hold) + touch pip. Both hands use * the same layout. Pointer-locked mode shows the WASD-style mapped keys. */ import React from 'react'; import { XRController } from 'iwer/lib/device/XRController'; interface JoystickProps { xrController: XRController; pointerLocked: boolean; buttonId: string; mappedKeyUp: string; mappedKeyDown: string; mappedKeyLeft: string; mappedKeyRight: string; mappedKeyPressed: string; } export declare const Joystick: React.FC; export {}; //# sourceMappingURL=joystick.d.ts.map