/*! * Ecctrl * https://github.com/pmndrs/ecctrl * * SPDX-FileCopyrightText: 2023-2026 Erdong Chen * SPDX-License-Identifier: MIT */ import React from "react"; declare const _default: React.MemoExoticComponent<(props: JoystickProps) => React.JSX.Element>; export default _default; export interface JoystickProps extends React.HTMLAttributes { id?: string; joystickMaxRadius?: number; joystickWrapperStyle?: React.CSSProperties; joystickBaseStyle?: React.CSSProperties; joystickKnobStyle?: React.CSSProperties; props?: React.HTMLAttributes; }