import Player from "../../player";
/**
 * Creates a virtual joystick which can be used to control a {@link Player}'s movement on a touch device.
 *
 * @param element The element to append the joystick to
 * @param player The player to control
 */
export declare function createVirtualJoystick(element: HTMLElement, player: Player): void;
