import type { PlayerInput } from '../type'; export default class BasicCharacterControllerInput { keys: PlayerInput | any; constructor(); initialize(): void; handleLockChange(): void; onKeydown(e: KeyboardEvent): void; onKeyup(e: KeyboardEvent): void; }