import { View } from 'react-native'; import type { JoystickProps } from './types'; /** * A two-axis positional input — a stick that springs back to centre, or an XY * pad that holds where it is left. * * The gesture runs on the shared `useDragGesture`, so a drag that leaves the pad * keeps tracking the finger instead of handing the touch back to the page. */ export declare const Joystick: import("../../core/factory").PlatformBlocksComponent<{ props: JoystickProps; ref: View; }>;