import { ControlInputTypes } from "../../../../Controls/Control.types.js"; import { DivineControlEvent } from "../../../DivineControlEventBase.js"; export declare abstract class DCBaseGamepadButtonEvent extends DivineControlEvent { readonly inputType = ControlInputTypes.GamePadButton; getButton(): import("../../../../Controls/Control.types.js").DefaultGamePadButtons | undefined; }